quorum/testing.go

34 lines
540 B
Go
Raw Normal View History

package main
2014-01-11 06:27:08 -08:00
2014-01-08 14:43:20 -08:00
/*
import (
2014-01-08 14:43:20 -08:00
_"fmt"
)
2014-01-02 14:02:24 -08:00
// This will eventually go away
var Db *MemDatabase
func Testing() {
2014-01-02 14:02:24 -08:00
db, _ := NewMemDatabase()
Db = db
bm := NewBlockManager()
2014-01-05 11:41:01 -08:00
tx := NewTransaction("\x00", 20, []string{"PUSH"})
2014-01-17 07:57:42 -08:00
txData := tx.RlpEncode()
2014-01-08 14:43:20 -08:00
//fmt.Printf("%q\n", txData)
copyTx := &Transaction{}
2014-01-17 07:57:42 -08:00
copyTx.RlpDecode(txData)
2014-01-08 14:43:20 -08:00
//fmt.Println(tx)
//fmt.Println(copyTx)
tx2 := NewTransaction("\x00", 20, []string{"SET 10 6", "LD 10 10"})
2014-01-02 14:02:24 -08:00
blck := CreateTestBlock([]*Transaction{tx2, tx})
bm.ProcessBlock( blck )
}
2014-01-08 14:43:20 -08:00
*/