diff options
author | Determinant <[email protected]> | 2020-07-03 10:54:47 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-07-03 10:54:47 -0400 |
commit | 67ae6a33a4bfd74dad0a043f07f91647d34cff8d (patch) | |
tree | eca9c6437187e23c99c905028d15d2010e249502 /core | |
parent | ca6847998d867dc5d66e76a03bda9c72ae8d287b (diff) |
more clean up
Diffstat (limited to 'core')
-rw-r--r-- | core/state_processor.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/state_processor.go b/core/state_processor.go index d80997e..6cc646a 100644 --- a/core/state_processor.go +++ b/core/state_processor.go @@ -25,7 +25,6 @@ import ( "github.com/ava-labs/coreth/params" "github.com/ava-labs/go-ethereum/common" "github.com/ava-labs/go-ethereum/crypto" - "github.com/ava-labs/go-ethereum/log" ) // StateProcessor is a basic Processor, which takes care of transitioning @@ -55,7 +54,6 @@ func NewStateProcessor(config *params.ChainConfig, bc *BlockChain, engine consen // returns the amount of gas that was used in the process. If any of the // transactions failed to execute due to insufficient gas it will return an error. func (p *StateProcessor) Process(block *types.Block, statedb *state.StateDB, cfg vm.Config) (types.Receipts, []*types.Log, uint64, error) { - log.Debug("here4") var ( receipts types.Receipts usedGas = new(uint64) |