aboutsummaryrefslogblamecommitdiffstats
path: root/ethchain/block_manager_test.go
blob: 853d459d801833a8f1f95ee07a90b2a81def03b3 (plain) (tree)
1
2
3
4
5
6
7

                

               


                                            




                           
                              
 


                                       
 





                                                                              

                       
                                                          
 
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
    ctrct := NewTransaction(ContractAddr, big.NewInt(200000000), []string{
        "PUSH",
        "1",
        "PUSH",
        "2",
        "STOP",
    })
    bm.ApplyTransactions(block, []*Transaction{ctrct})
}