aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-10 08:01:09 +0800
committerobscuren <geffobscura@gmail.com>2014-05-10 08:01:09 +0800
commitc03bf14e02fe7f13944b71f5370b1d7bd5978ffe (patch)
tree4e0b563bfa1c44088fbf6d2553378288ea59b564 /ethchain
parentafe83af219c2146e022f6665cf30097b582d3e79 (diff)
downloadgo-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.gz
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.bz2
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.lz
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.xz
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.zst
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.zip
Fixed some tests
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/vm_test.go67
1 files changed, 1 insertions, 66 deletions
diff --git a/ethchain/vm_test.go b/ethchain/vm_test.go
index f4a0197ea..b919b496f 100644
--- a/ethchain/vm_test.go
+++ b/ethchain/vm_test.go
@@ -11,71 +11,6 @@ import (
"testing"
)
-/*
-func TestRun3(t *testing.T) {
- ethutil.ReadConfig("")
-
- db, _ := ethdb.NewMemDatabase()
- state := NewState(ethutil.NewTrie(db, ""))
-
- script := Compile([]string{
- "PUSH", "300",
- "PUSH", "0",
- "MSTORE",
-
- "PUSH", "32",
- "CALLDATA",
-
- "PUSH", "64",
- "PUSH", "0",
- "RETURN",
- })
- tx := NewContractCreationTx(ethutil.Big("0"), ethutil.Big("1000"), script)
- addr := tx.Hash()[12:]
- contract := MakeContract(tx, state)
- state.UpdateContract(contract)
-
- callerScript := ethutil.Assemble(
- "PUSH", 1337, // Argument
- "PUSH", 65, // argument mem offset
- "MSTORE",
- "PUSH", 64, // ret size
- "PUSH", 0, // ret offset
-
- "PUSH", 32, // arg size
- "PUSH", 65, // arg offset
- "PUSH", 1000, /// Gas
- "PUSH", 0, /// value
- "PUSH", addr, // Sender
- "CALL",
- "PUSH", 64,
- "PUSH", 0,
- "RETURN",
- )
- callerTx := NewContractCreationTx(ethutil.Big("0"), ethutil.Big("1000"), callerScript)
-
- // Contract addr as test address
- account := NewAccount(ContractAddr, big.NewInt(10000000))
- callerClosure := NewClosure(account, MakeContract(callerTx, state), state, big.NewInt(1000000000), new(big.Int))
-
- vm := NewVm(state, RuntimeVars{
- origin: account.Address(),
- blockNumber: 1,
- prevHash: ethutil.FromHex("5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"),
- coinbase: ethutil.FromHex("2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"),
- time: 1,
- diff: big.NewInt(256),
- // XXX Tx data? Could be just an argument to the closure instead
- txData: nil,
- })
- ret := callerClosure.Call(vm, nil)
-
- exp := []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 57}
- if bytes.Compare(ret, exp) != 0 {
- t.Errorf("expected return value to be %v, got %v", exp, ret)
- }
-}*/
-
func TestRun4(t *testing.T) {
ethutil.ReadConfig("")
@@ -142,7 +77,7 @@ func TestRun4(t *testing.T) {
fmt.Println(err)
}
fmt.Println("account.Amount =", account.Amount)
- callerClosure := NewClosure(account, c, c.script, state, gas, gasPrice, big.NewInt(0))
+ callerClosure := NewClosure(account, c, c.script, state, gas, gasPrice)
vm := NewVm(state, nil, RuntimeVars{
Origin: account.Address(),