laconicd/x/evm/types/key.go
David Ansermino d9d45b48b9
CSDB Keeper (#76)
- Implements Keeper. This is a wrapper around the "real" keeper (CSDB). Since we need to pass the context into the keeper we need to abstract the CSDB from the 
- Adds WithContext() to CSDB to support the above requirement
- Adds Keeper to app
2019-07-24 18:14:12 -04:00

10 lines
119 B
Go

package types
const (
// module name
ModuleName = "ethermint"
EvmStoreKey = "evmstore"
EvmCodeKey = "evmcode"
)