This commit is contained in:
0xmuralik
2022-10-17 17:14:21 +05:30
parent e0df2b6749
commit d965f6fbb9
4 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ func (avd EthAccountVerificationDecorator) AnteHandle(
// check whether the sender address is EOA
fromAddr := common.BytesToAddress(from)
acct := avd.evmKeeper.GetAccount(ctx, fromAddr)
acct := avd.evmKeeper.GetAccount(ctx, fromAddr) //nolint: all
if acct == nil {
acc := avd.ak.NewAccountWithAddress(ctx, from)
+1
View File
@@ -1,3 +1,4 @@
//nolint: all
package app
import (