aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/block_manager_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethchain/block_manager_test.go')
-rw-r--r--ethchain/block_manager_test.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/ethchain/block_manager_test.go b/ethchain/block_manager_test.go
deleted file mode 100644
index 3a1e5f510..000000000
--- a/ethchain/block_manager_test.go
+++ /dev/null
@@ -1,36 +0,0 @@
-package ethchain
-
-/*
-import (
- _ "fmt"
- "github.com/ethereum/eth-go/ethdb"
- "github.com/ethereum/eth-go/ethutil"
- "math/big"
- "testing"
-)
-
-func TestVm(t *testing.T) {
- InitFees()
- ethutil.ReadConfig("")
-
- db, _ := ethdb.NewMemDatabase()
- ethutil.Config.Db = db
- bm := NewStateManager(nil)
-
- block := bm.bc.genesisBlock
- bm.Prepare(block.State(), block.State())
- script := Compile([]string{
- "PUSH",
- "1",
- "PUSH",
- "2",
- })
- tx := NewTransaction(ContractAddr, big.NewInt(200000000), script)
- addr := tx.Hash()[12:]
- bm.ApplyTransactions(block, []*Transaction{tx})
-
- tx2 := NewTransaction(addr, big.NewInt(1e17), nil)
- tx2.Sign([]byte("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"))
- bm.ApplyTransactions(block, []*Transaction{tx2})
-}
-*/