Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/ethchain/block_manager_test.go

37 lines
730 B

11 years ago
package ethchain
/*
11 years ago
import (
_ "fmt"
"github.com/ethereum/eth-go/ethdb"
"github.com/ethereum/eth-go/ethutil"
"math/big"
11 years ago
"testing"
)
func TestVm(t *testing.T) {
InitFees()
ethutil.ReadConfig("")
11 years ago
db, _ := ethdb.NewMemDatabase()
ethutil.Config.Db = db
bm := NewStateManager(nil)
11 years ago
block := bm.bc.genesisBlock
bm.Prepare(block.State(), block.State())
11 years ago
script := Compile([]string{
"PUSH",
"1",
"PUSH",
"2",
11 years ago
})
11 years ago
tx := NewTransaction(ContractAddr, big.NewInt(200000000), script)
addr := tx.Hash()[12:]
bm.ApplyTransactions(block, []*Transaction{tx})
tx2 := NewTransaction(addr, big.NewInt(1e17), nil)
tx2.Sign([]byte("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"))
bm.ApplyTransactions(block, []*Transaction{tx2})
11 years ago
}
*/