Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.

Commit cebea0e

Browse files
author
David Ansermino
committed
gofmt
1 parent 952e25c commit cebea0e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/ethermint.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ type EthermintApp struct {
100100
keyParams *sdk.KVStoreKey
101101
tkeyParams *sdk.TransientStoreKey
102102
evmStoreKey *sdk.KVStoreKey
103-
evmCodeKey *sdk.KVStoreKey
103+
evmCodeKey *sdk.KVStoreKey
104104

105105
// keepers
106106
accountKeeper auth.AccountKeeper
@@ -113,7 +113,7 @@ type EthermintApp struct {
113113
govKeeper gov.Keeper
114114
crisisKeeper crisis.Keeper
115115
paramsKeeper params.Keeper
116-
evmKeeper evm.Keeper
116+
evmKeeper evm.Keeper
117117

118118
// the module manager
119119
mm *module.Manager
@@ -148,8 +148,8 @@ func NewEthermintApp(logger tmlog.Logger, db dbm.DB, loadLatest bool,
148148
keyGov: sdk.NewKVStoreKey(gov.StoreKey),
149149
keyParams: sdk.NewKVStoreKey(params.StoreKey),
150150
tkeyParams: sdk.NewTransientStoreKey(params.TStoreKey),
151-
evmStoreKey: sdk.NewKVStoreKey(evmtypes.EvmStoreKey),
152-
evmCodeKey: sdk.NewKVStoreKey(evmtypes.EvmCodeKey),
151+
evmStoreKey: sdk.NewKVStoreKey(evmtypes.EvmStoreKey),
152+
evmCodeKey: sdk.NewKVStoreKey(evmtypes.EvmCodeKey),
153153
}
154154

155155
// init params keeper and subspaces

x/evm/types/key.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ const (
55
ModuleName = "ethermint"
66

77
EvmStoreKey = "evmstore"
8-
EvmCodeKey = "evmcode"
9-
)
8+
EvmCodeKey = "evmcode"
9+
)

0 commit comments

Comments
 (0)