From 190a10e686803867f15243430e65a19b70e3024c Mon Sep 17 00:00:00 2001 From: evgeniy-scherbina Date: Mon, 6 May 2024 08:41:36 -0400 Subject: [PATCH] Added doc comments --- x/evm/keeper/precompile.go | 1 + 1 file changed, 1 insertion(+) diff --git a/x/evm/keeper/precompile.go b/x/evm/keeper/precompile.go index 2c939f3544..d19ef5c76b 100644 --- a/x/evm/keeper/precompile.go +++ b/x/evm/keeper/precompile.go @@ -21,6 +21,7 @@ type StateDB interface { SetCode(common.Address, []byte) } +// InitializationConfig contains lists of contracts which has to be validated, initialized and uninitialized correspondingly. type InitializationConfig struct { ValidateInitialized []common.Address ValidateUninitialized []common.Address