Skip to content

Commit

Permalink
Revert proto indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
skosito committed Apr 17, 2024
1 parent 0bcc169 commit a1be78d
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 73 deletions.
16 changes: 8 additions & 8 deletions proto/crosschain/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ option go_package = "github.com/zeta-chain/zetacore/x/crosschain/types";

// GenesisState defines the metacore module's genesis state.
message GenesisState {
repeated OutTxTracker outTxTrackerList = 1 [(gogoproto.nullable) = false];
repeated GasPrice gasPriceList = 2;
repeated CrossChainTx CrossChainTxs = 3;
repeated LastBlockHeight lastBlockHeightList = 4;
repeated InTxHashToCctx inTxHashToCctxList = 5 [(gogoproto.nullable) = false];
repeated InTxTracker in_tx_tracker_list = 6 [(gogoproto.nullable) = false];
ZetaAccounting zeta_accounting = 7 [(gogoproto.nullable) = false];
repeated string FinalizedInbounds = 8;
repeated OutTxTracker outTxTrackerList = 2 [(gogoproto.nullable) = false];
repeated GasPrice gasPriceList = 5;
repeated CrossChainTx CrossChainTxs = 7;
repeated LastBlockHeight lastBlockHeightList = 8;
repeated InTxHashToCctx inTxHashToCctxList = 9 [(gogoproto.nullable) = false];
repeated InTxTracker in_tx_tracker_list = 11 [(gogoproto.nullable) = false];
ZetaAccounting zeta_accounting = 12 [(gogoproto.nullable) = false];
repeated string FinalizedInbounds = 16;
}
4 changes: 2 additions & 2 deletions proto/fungible/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ option go_package = "github.com/zeta-chain/zetacore/x/fungible/types";

// GenesisState defines the fungible module's genesis state.
message GenesisState {
repeated ForeignCoins foreignCoinsList = 1 [(gogoproto.nullable) = false];
SystemContract systemContract = 2;
repeated ForeignCoins foreignCoinsList = 2 [(gogoproto.nullable) = false];
SystemContract systemContract = 3;
}
108 changes: 55 additions & 53 deletions x/crosschain/types/genesis.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions x/fungible/types/genesis.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a1be78d

Please sign in to comment.