fix: proto gen (#21172)

This commit is contained in:
Julien Robert
2024-08-05 10:20:24 +00:00
committed by GitHub
parent 3128b08cfc
commit 892a3e355d
6 changed files with 49 additions and 39 deletions
+5 -2
View File
@@ -62,9 +62,12 @@ message Module {
// GasConfig is the config object for gas limits.
message GasConfig {
// validate_tx_gas_limit is the gas limit for validating a tx.
uint64 validate_tx_gas_limit = 1;
uint64 query_gas_limit = 2;
uint64 simulation_gas_limit = 3;
// query_gas_limit is the gas limit for querying.
uint64 query_gas_limit = 2;
// simulation_gas_limit is the gas limit for simulation.
uint64 simulation_gas_limit = 3;
}
// StoreKeyConfig may be supplied to override the default module store key, which
@@ -3,7 +3,7 @@ package cosmos.store.snapshots.v2;
import "gogoproto/gogo.proto";
import "cosmos_proto/cosmos.proto";
option go_package = "cosmossdk.io/store/snapshots/types";
option go_package = "cosmossdk.io/store/v2/snapshots/types";
// Snapshot contains Tendermint state sync snapshot info.
message Snapshot {