quorum/ethchain/block_manager_test.go

29 lines
490 B
Go
Raw Normal View History

2014-02-14 14:56:09 -08:00
package ethchain
import (
_ "fmt"
2014-02-19 02:35:17 -08:00
"github.com/ethereum/eth-go/ethdb"
"github.com/ethereum/eth-go/ethutil"
"math/big"
2014-02-14 14:56:09 -08:00
"testing"
)
func TestVm(t *testing.T) {
InitFees()
2014-02-19 02:35:17 -08:00
ethutil.ReadConfig("")
2014-02-14 14:56:09 -08:00
2014-02-19 02:35:17 -08:00
db, _ := ethdb.NewMemDatabase()
ethutil.Config.Db = db
bm := NewBlockManager(nil)
2014-02-14 14:56:09 -08:00
2014-02-19 02:35:17 -08:00
block := bm.bc.genesisBlock
ctrct := NewTransaction(ContractAddr, big.NewInt(200000000), []string{
"PUSH",
"1",
"PUSH",
"2",
2014-02-14 14:56:09 -08:00
"STOP",
})
2014-02-19 02:35:17 -08:00
bm.ApplyTransactions(block, []*Transaction{ctrct})
2014-02-14 14:56:09 -08:00
}