diff options
-rw-r--r-- | core/state_processor.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/state_processor.go b/core/state_processor.go index c211d7a71..9edb6982c 100644 --- a/core/state_processor.go +++ b/core/state_processor.go @@ -17,8 +17,6 @@ package core import ( - "fmt" - "github.com/tangerine-network/go-tangerine/common" "github.com/tangerine-network/go-tangerine/consensus" "github.com/tangerine-network/go-tangerine/consensus/misc" @@ -88,7 +86,6 @@ func (p *StateProcessor) Process(block *types.Block, statedb *state.StateDB, cfg // for the transaction, gas used and an error if the transaction failed, // indicating the block was invalid. func ApplyTransaction(config *params.ChainConfig, bc ChainContext, author *common.Address, gp *GasPool, statedb *state.StateDB, header *types.Header, tx *types.Transaction, usedGas *uint64, cfg vm.Config) (*types.Receipt, uint64, error) { - fmt.Println("============= cfg", cfg) msg, err := tx.AsMessage(types.MakeSigner(config, header.Number)) if err != nil { return nil, 0, err |