2014-02-14 22:56:09 +00:00
|
|
|
package ethchain
|
|
|
|
|
2014-03-20 16:24:53 +00:00
|
|
|
/*
|
2014-02-14 22:56:09 +00:00
|
|
|
import (
|
|
|
|
_ "fmt"
|
2014-02-19 10:35:17 +00:00
|
|
|
"github.com/ethereum/eth-go/ethdb"
|
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
|
|
|
"math/big"
|
2014-02-14 22:56:09 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestVm(t *testing.T) {
|
|
|
|
InitFees()
|
2014-02-19 10:35:17 +00:00
|
|
|
ethutil.ReadConfig("")
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-02-19 10:35:17 +00:00
|
|
|
db, _ := ethdb.NewMemDatabase()
|
|
|
|
ethutil.Config.Db = db
|
2014-03-20 16:24:53 +00:00
|
|
|
bm := NewStateManager(nil)
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-02-19 10:35:17 +00:00
|
|
|
block := bm.bc.genesisBlock
|
2014-03-20 16:24:53 +00:00
|
|
|
bm.Prepare(block.State(), block.State())
|
2014-02-24 11:13:22 +00:00
|
|
|
script := Compile([]string{
|
2014-02-19 10:35:17 +00:00
|
|
|
"PUSH",
|
|
|
|
"1",
|
|
|
|
"PUSH",
|
|
|
|
"2",
|
2014-02-14 22:56:09 +00:00
|
|
|
})
|
2014-02-24 11:44:29 +00:00
|
|
|
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})
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
2014-03-20 16:24:53 +00:00
|
|
|
*/
|