30 lines
517 B
Go
30 lines
517 B
Go
package ethchain
|
|
|
|
import (
|
|
_ "fmt"
|
|
"github.com/ethereum/eth-go/ethdb"
|
|
"github.com/ethereum/eth-go/ethutil"
|
|
"math/big"
|
|
"testing"
|
|
)
|
|
|
|
func TestVm(t *testing.T) {
|
|
InitFees()
|
|
ethutil.ReadConfig("")
|
|
|
|
db, _ := ethdb.NewMemDatabase()
|
|
ethutil.Config.Db = db
|
|
bm := NewBlockManager(nil)
|
|
|
|
block := bm.bc.genesisBlock
|
|
script := Compile([]string{
|
|
"PUSH",
|
|
"1",
|
|
"PUSH",
|
|
"2",
|
|
"STOP",
|
|
})
|
|
ctrct := NewTransaction(ContractAddr, big.NewInt(200000000), script)
|
|
bm.ApplyTransactions(block, []*Transaction{ctrct})
|
|
}
|