quorum/ethchain/block_manager_test.go

34 lines
682 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
2014-02-24 03:13:22 -08:00
script := Compile([]string{
2014-02-19 02:35:17 -08:00
"PUSH",
"1",
"PUSH",
"2",
2014-02-14 14:56:09 -08:00
})
2014-02-24 03:44:29 -08:00
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})
2014-02-14 14:56:09 -08:00
}