Commit 88a9c62f authored by obscuren's avatar obscuren

Proper tests

parent b29c1eec
This diff is collapsed.
...@@ -22,8 +22,12 @@ func TestVm(t *testing.T) { ...@@ -22,8 +22,12 @@ func TestVm(t *testing.T) {
"1", "1",
"PUSH", "PUSH",
"2", "2",
"STOP",
}) })
ctrct := NewTransaction(ContractAddr, big.NewInt(200000000), script) tx := NewTransaction(ContractAddr, big.NewInt(200000000), script)
bm.ApplyTransactions(block, []*Transaction{ctrct}) 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})
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment