aboutsummaryrefslogblamecommitdiffstats
path: root/ethereum.go
blob: 52e6e3046307d786bb6efc59d9e689c89c271d2c (plain) (tree)
1
2
3
4
5
6
7
8





            

                   




                         
                                            












                  






                                                                     




                                           





                           
 
package main

import (
  "fmt"
)

const Debug = false

func main() {
  InitFees()

  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 := NewBlock([]*Transaction{tx2, tx})

  bm.ProcessBlock( blck )

  t := blck.MarshalRlp()
  copyBlock := &Block{}
  copyBlock.UnmarshalRlp(t)

  fmt.Println(blck)
  fmt.Println(copyBlock)
}