aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
blob: 530cbd5c1eaf3607cd169c81c95410caa355957d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package main

import (
  "fmt"
)

func main() {
  InitFees()

  bm := NewBlockManager()

  tx := NewTransaction(0x0, 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",
  })
  tx2 := NewTransaction(0x0, 20, []string{"SET 10 6", "LD 10 10"})

  blck := NewBlock([]*Transaction{tx2, tx})

  bm.ProcessBlock( blck )

  fmt.Printf("rlp encoded Tx %q\n", tx.Serialize())
}