Added compile

pull/150/head
obscuren 11 years ago
parent 22e2c3429b
commit d8b5bbd48c
  1. 3
      ethchain/block_manager_test.go

@ -17,12 +17,13 @@ func TestVm(t *testing.T) {
bm := NewBlockManager(nil)
block := bm.bc.genesisBlock
ctrct := NewTransaction(ContractAddr, big.NewInt(200000000), []string{
script := Compile([]string{
"PUSH",
"1",
"PUSH",
"2",
"STOP",
})
ctrct := NewTransaction(ContractAddr, big.NewInt(200000000), script)
bm.ApplyTransactions(block, []*Transaction{ctrct})
}

Loading…
Cancel
Save