forked from cerc-io/laconicd-deprecated
ccbaf1fe05
* first pass * extra comment * fixed pruned node tests. Fix getBalance on pruned. Fix BaseFee on pruned. * fix tests execution * check logs on tests * address pr comments * address comments * Update rpc/namespaces/ethereum/eth/api.go * update error msg check * fix lint * fix linter * fix linter * fix py lint * test lint * fix lint * pin golangcli version * pin golanci version * pin lint to version 0.48 * fix linter * fix last linter last file Co-authored-by: ramacarlucho <ramirocarlucho@gmail.com> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
13 lines
539 B
Go
13 lines
539 B
Go
/*
|
|
Package ante defines the SDK auth module's AnteHandler as well as an internal
|
|
AnteHandler for an Ethereum transaction (i.e MsgEthereumTx).
|
|
|
|
During CheckTx, the transaction is passed through a series of
|
|
pre-message execution validation checks such as signature and account
|
|
verification in addition to minimum fees being checked. Otherwise, during
|
|
DeliverTx, the transaction is simply passed to the EVM which will also
|
|
perform the same series of checks. The distinction is made in CheckTx to
|
|
prevent spam and DoS attacks.
|
|
*/
|
|
package ante
|