quorum/vm_test.go

27 lines
472 B
Go
Raw Normal View History

2014-01-02 14:02:24 -08:00
package main
import (
"fmt"
"testing"
)
func TestVm(t *testing.T) {
db, _ := NewMemDatabase()
Db = db
2014-01-02 15:43:49 -08:00
tx := NewTransaction("", 20, []string{
2014-01-02 14:02:24 -08:00
"PSH 10",
})
block := CreateBlock("", 0, "", "", 0, 0, "", []*Transaction{tx})
db.Put(block.Hash(), block.MarshalRlp())
bm := NewBlockManager()
bm.ProcessBlock( block )
2014-01-02 15:43:49 -08:00
contract := block.GetContract(tx.Hash())
fmt.Println(contract)
fmt.Println("it is", contract.state.Get(string(Encode(0))))
2014-01-02 14:02:24 -08:00
}