diff options
author | JM <jm@dexon.org> | 2019-01-31 15:12:57 +0800 |
---|---|---|
committer | Jhih-Ming Huang <jm.huang@cobinhood.com> | 2019-02-19 12:12:39 +0800 |
commit | 04605247f508e8e9742cec7a67ab0b705d3f2cc4 (patch) | |
tree | 36487e024dac63735a70b24a68306e053454fe3c /les | |
parent | 83dc3783f176e51ce2c946a26a3935993d421724 (diff) | |
download | dexon-04605247f508e8e9742cec7a67ab0b705d3f2cc4.tar dexon-04605247f508e8e9742cec7a67ab0b705d3f2cc4.tar.gz dexon-04605247f508e8e9742cec7a67ab0b705d3f2cc4.tar.bz2 dexon-04605247f508e8e9742cec7a67ab0b705d3f2cc4.tar.lz dexon-04605247f508e8e9742cec7a67ab0b705d3f2cc4.tar.xz dexon-04605247f508e8e9742cec7a67ab0b705d3f2cc4.tar.zst dexon-04605247f508e8e9742cec7a67ab0b705d3f2cc4.zip |
core: vm: vm interface (#164)
Diffstat (limited to 'les')
-rw-r--r-- | les/helper_test.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/les/helper_test.go b/les/helper_test.go index 550fb1905..136c4e33e 100644 --- a/les/helper_test.go +++ b/les/helper_test.go @@ -30,7 +30,8 @@ import ( "github.com/dexon-foundation/dexon/consensus/ethash" "github.com/dexon-foundation/dexon/core" "github.com/dexon-foundation/dexon/core/types" - vm "github.com/dexon-foundation/dexon/core/vm/evm" + "github.com/dexon-foundation/dexon/core/vm/evm" + "github.com/dexon-foundation/dexon/core/vm/tools" "github.com/dexon-foundation/dexon/crypto" "github.com/dexon-foundation/dexon/eth" "github.com/dexon-foundation/dexon/ethdb" @@ -77,7 +78,11 @@ contract test { } } */ - +func init() { + testContractCode = tools.PatchBinary(testContractCode) + testEventEmitterCode = tools.PatchBinary(testEventEmitterCode) + testContractCodeDeployed = tools.PatchBinary(testContractCodeDeployed) +} func testChainGen(i int, block *core.BlockGen) { signer := types.HomesteadSigner{} @@ -164,7 +169,7 @@ func newTestProtocolManager(lightSync bool, blocks int, generator func(int, *cor if lightSync { chain, _ = light.NewLightChain(odr, gspec.Config, engine) } else { - blockchain, _ := core.NewBlockChain(db, nil, gspec.Config, engine, vm.Config{}, nil) + blockchain, _ := core.NewBlockChain(db, nil, gspec.Config, engine, evm.Config{}, nil) gchain, _ := core.GenerateChain(gspec.Config, genesis, ethash.NewFaker(), db, blocks, generator) if _, err := blockchain.InsertChain(gchain); err != nil { panic(err) |