quorum/ethereum.go

47 lines
718 B
Go
Raw Normal View History

2013-12-26 03:45:52 -08:00
package main
import (
"fmt"
)
2013-12-28 06:18:23 -08:00
const Debug = false
2013-12-26 03:45:52 -08:00
func main() {
InitFees()
bm := NewBlockManager()
2013-12-27 17:24:16 -08:00
tx := NewTransaction("\x00", 20, []string{
2013-12-26 03:45:52 -08:00
"SET 10 6",
"LD 10 10",
"LT 10 1 20",
"SET 255 7",
"JMPI 20 255",
"STOP",
"SET 30 200",
"LD 30 31",
"SET 255 22",
"JMPI 31 255",
"SET 255 15",
"JMP 255",
})
2013-12-27 17:24:16 -08:00
txData := tx.MarshalRlp()
copyTx := &Transaction{}
copyTx.UnmarshalRlp(txData)
tx2 := NewTransaction("\x00", 20, []string{"SET 10 6", "LD 10 10"})
2013-12-26 03:45:52 -08:00
blck := NewBlock([]*Transaction{tx2, tx})
bm.ProcessBlock( blck )
2013-12-28 06:18:23 -08:00
t := blck.MarshalRlp()
copyBlock := &Block{}
copyBlock.UnmarshalRlp(t)
fmt.Println(blck)
fmt.Println(copyBlock)
2013-12-26 03:45:52 -08:00
}