diff --git a/x/machine/keeper/msg_server_attest_machine.go b/x/machine/keeper/msg_server_attest_machine.go index d90bf02..5c92429 100644 --- a/x/machine/keeper/msg_server_attest_machine.go +++ b/x/machine/keeper/msg_server_attest_machine.go @@ -11,6 +11,10 @@ import ( func (k msgServer) AttestMachine(goCtx context.Context, msg *types.MsgAttestMachine) (*types.MsgAttestMachineResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) + if msg.Machine.Reissue { + k.Logger(ctx).Info("TODO Implement handle on reissue == true") + } + k.StoreMachine(ctx, *msg.Machine) k.StoreMachineIndex(ctx, *msg.Machine)