Skip to content

Commit

Permalink
[11859]: Remove the send_enabled field from the bank Params proto.
Browse files Browse the repository at this point in the history
  • Loading branch information
dwedul-figure committed May 11, 2022
1 parent bc7fe5e commit 0bd904c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions proto/cosmos/bank/v1beta1/bank.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types";

// Params defines the parameters for the bank module.
message Params {
option (gogoproto.goproto_stringer) = false;
repeated SendEnabled send_enabled = 1;
bool default_send_enabled = 2;
option (gogoproto.goproto_stringer) = false;
reserved 1;
reserved "send_enabled";

bool default_send_enabled = 2;
}

// SendEnabled maps coin denom to a send_enabled status (whether a denom is
Expand Down

0 comments on commit 0bd904c

Please sign in to comment.