Skip to content

Commit

Permalink
fix msgupdate response
Browse files Browse the repository at this point in the history
  • Loading branch information
DSHIVAAY-23 committed Dec 11, 2024
1 parent 0dbcf79 commit c8a1d6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto/dymensionxyz/dymension/sequencer/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ service Msg {
// UpdateOptInStatus allows toggling optedIn bool
// NOTE: arguably should have just used UpdateSequencerInformation instead of having a new message, but want to avoid changing
// frontends last minute.
rpc UpdateOptInStatus (MsgUpdateOptInStatus) returns (MsgUpdateOptInStatus);
rpc UpdateOptInStatus (MsgUpdateOptInStatus) returns (MsgUpdateOptInStatusResponse);
rpc KickProposer (MsgKickProposer) returns (MsgKickProposerResponse);
// Unbond defines a method for removing coins from sequencer's bond
rpc Unbond (MsgUnbond) returns (MsgUnbondResponse);
Expand Down Expand Up @@ -136,7 +136,7 @@ message MsgUpdateOptInStatusResponse {}
// bond and a sequencer.
message MsgUnbond {
option (cosmos.msg.v1.signer) = "creator";
option (gogoproto.equal) = false;
option (gogoproto.equal) = false;
string creator = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
}

Expand Down

0 comments on commit c8a1d6e

Please sign in to comment.