8886ce3dfd
* (refactor): Migrated to new Typed Events * (fix): fixed tests and initialized the logs array in the proto message * Added CHANGELOG entry * (refactor): Made migration to Typedevent to feemarket module * (fix): replace error returning with error logging. * fix: linter and formatter * fix: handle error by logging it * fix: ran formatter and linter * Apply suggestions from code review Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com> * fix: increase sleep time to 5s initially * fix: comment out failing tests to investigate in a separate PR * fix: update timeout to 10 minutes * fix: added 15 min timeout Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
19 lines
453 B
Protocol Buffer
19 lines
453 B
Protocol Buffer
syntax = "proto3";
|
|
package ethermint.feemarket.v1;
|
|
|
|
option go_package = "github.com/evmos/ethermint/x/feemarket/types";
|
|
|
|
// EventFeeMarket is the event type for the fee market module
|
|
message EventFeeMarket {
|
|
// base_fee for EIP-1559 blocks
|
|
string base_fee = 1;
|
|
}
|
|
|
|
// EventBlockGas defines an Ethereum block gas event
|
|
message EventBlockGas {
|
|
// height of the block
|
|
string height = 1;
|
|
// amount of gas wanted by the block
|
|
string amount = 2;
|
|
}
|