This commit is contained in:
obscuren 2014-01-05 20:15:13 +01:00
parent 79c89c0bcd
commit 40dc4d0259
1 changed files with 3 additions and 3 deletions

View File

@ -13,13 +13,13 @@ func Testing() {
bm := NewBlockManager()
tx := NewTransaction("\x00", 20, []string{
"PSH 10",
})
tx := NewTransaction("\x00", 20, []string{"PSH 10"})
txData := tx.MarshalRlp()
copyTx := &Transaction{}
copyTx.UnmarshalRlp(txData)
fmt.Println(tx)
fmt.Println(copyTx)
tx2 := NewTransaction("\x00", 20, []string{"SET 10 6", "LD 10 10"})