github.com/ethereumproject/go-ethereum@v5.5.2+incompatible/core/multivm_fake_processor.go (about) 1 // +build !sputnikvm 2 3 package core 4 5 import ( 6 "math/big" 7 8 "github.com/ethereumproject/go-ethereum/core/state" 9 "github.com/ethereumproject/go-ethereum/core/types" 10 evm "github.com/ethereumproject/go-ethereum/core/vm" 11 ) 12 13 const SputnikVMExists = false 14 15 var UseSputnikVM = "false" 16 17 func ApplyMultiVmTransaction(config *ChainConfig, bc *BlockChain, gp *GasPool, statedb *state.StateDB, header *types.Header, tx *types.Transaction, totalUsedGas *big.Int) (*types.Receipt, evm.Logs, *big.Int, error) { 18 panic("not implemented") 19 }