mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
641 B
37 lines
641 B
11 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func Testing() {
|
||
|
bm := NewBlockManager()
|
||
|
|
||
|
tx := NewTransaction("\x00", 20, []string{
|
||
|
"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",
|
||
|
})
|
||
|
txData := tx.MarshalRlp()
|
||
|
|
||
|
copyTx := &Transaction{}
|
||
|
copyTx.UnmarshalRlp(txData)
|
||
|
|
||
|
tx2 := NewTransaction("\x00", 20, []string{"SET 10 6", "LD 10 10"})
|
||
|
|
||
|
blck := CreateBlock([]*Transaction{tx2, tx})
|
||
|
|
||
|
bm.ProcessBlock( blck )
|
||
|
|
||
|
fmt.Println("GenesisBlock:", GenisisBlock, "hashed", GenisisBlock.Hash())
|
||
|
}
|