laconicd-deprecated/proto/ethermint/feemarket/v1/genesis.proto
Freddy Caceres f4fae00987
feat: format protobuf files (#1395)
* format protobuf files

* go mod tidy

* update gomod2nix
2022-10-20 16:43:19 -04:00

20 lines
660 B
Protocol Buffer

syntax = "proto3";
package ethermint.feemarket.v1;
import "gogoproto/gogo.proto";
import "ethermint/feemarket/v1/feemarket.proto";
option go_package = "github.com/evmos/ethermint/x/feemarket/types";
// GenesisState defines the feemarket module's genesis state.
message GenesisState {
// params defines all the paramaters of the module.
Params params = 1 [(gogoproto.nullable) = false];
// DEPRECATED: base fee is the exported value from previous software version.
// Zero by default.
reserved 2;
reserved "base_fee";
// block gas is the amount of gas wanted on the last block before the upgrade.
// Zero by default.
uint64 block_gas = 3;
}