diff options
author | obscuren <geffobscura@gmail.com> | 2014-03-21 00:24:53 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-03-21 00:24:53 +0800 |
commit | c135b389fe358006bd3586097e1b17232b0c86e6 (patch) | |
tree | 41a14ed3275db4568ae6a0e693b549bc89e1dd90 | |
parent | bdc0d1b7ad4e2a4ff78f287f088c13a5d6ab2148 (diff) | |
download | go-tangerine-c135b389fe358006bd3586097e1b17232b0c86e6.tar go-tangerine-c135b389fe358006bd3586097e1b17232b0c86e6.tar.gz go-tangerine-c135b389fe358006bd3586097e1b17232b0c86e6.tar.bz2 go-tangerine-c135b389fe358006bd3586097e1b17232b0c86e6.tar.lz go-tangerine-c135b389fe358006bd3586097e1b17232b0c86e6.tar.xz go-tangerine-c135b389fe358006bd3586097e1b17232b0c86e6.tar.zst go-tangerine-c135b389fe358006bd3586097e1b17232b0c86e6.zip |
Commented out code due to rewrite vm
-rw-r--r-- | ethchain/block_manager_test.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ethchain/block_manager_test.go b/ethchain/block_manager_test.go index ec4fbe8c5..3a1e5f510 100644 --- a/ethchain/block_manager_test.go +++ b/ethchain/block_manager_test.go @@ -1,5 +1,6 @@ package ethchain +/* import ( _ "fmt" "github.com/ethereum/eth-go/ethdb" @@ -14,9 +15,10 @@ func TestVm(t *testing.T) { db, _ := ethdb.NewMemDatabase() ethutil.Config.Db = db - bm := NewBlockManager(nil) + bm := NewStateManager(nil) block := bm.bc.genesisBlock + bm.Prepare(block.State(), block.State()) script := Compile([]string{ "PUSH", "1", @@ -31,3 +33,4 @@ func TestVm(t *testing.T) { tx2.Sign([]byte("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")) bm.ApplyTransactions(block, []*Transaction{tx2}) } +*/ |