aboutsummaryrefslogtreecommitdiffstats
path: root/vm_test.go
blob: 00b8809a12269b94ceef0dedab35f92e07c27767 (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
package main

import (
  "fmt"
  "testing"
)


func TestVm(t *testing.T) {
  db, _ := NewMemDatabase()
  Db = db

  tx := NewTransaction("", 20, []string{
    "PSH 10",
  })

  block := CreateBlock("", 0, "", "", 0, 0, "", []*Transaction{tx})
  db.Put(block.Hash(), block.MarshalRlp())

  bm := NewBlockManager()
  bm.ProcessBlock( block )
  contract := block.GetContract(tx.Hash())
  fmt.Println(contract)
  fmt.Println("it is", contract.state.Get(string(Encode(0))))
}