bf54193669
* change basefee to a module params * add changelog and fix linter * change params type of basefee and remove default base fee * restaure event * clean code * fix proto * fix protos * fix logic * update rpc tests * fix comment Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
20 lines
662 B
Protocol Buffer
20 lines
662 B
Protocol Buffer
syntax = "proto3";
|
|
package ethermint.feemarket.v1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "ethermint/feemarket/v1/feemarket.proto";
|
|
|
|
option go_package = "github.com/tharsis/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 used on the last block before the upgrade.
|
|
// Zero by default.
|
|
uint64 block_gas = 3;
|
|
} |