2014-02-24 11:10:45 +00:00
|
|
|
package ethchain
|
|
|
|
|
|
|
|
import (
|
2014-03-30 16:55:51 +00:00
|
|
|
_ "bytes"
|
2014-03-24 12:20:34 +00:00
|
|
|
"fmt"
|
2014-02-24 11:10:45 +00:00
|
|
|
"github.com/ethereum/eth-go/ethdb"
|
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
2014-03-24 12:20:34 +00:00
|
|
|
"github.com/obscuren/mutan"
|
2014-02-24 11:10:45 +00:00
|
|
|
"math/big"
|
2014-03-24 12:20:34 +00:00
|
|
|
"strings"
|
2014-02-24 11:10:45 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2014-03-24 12:20:34 +00:00
|
|
|
func TestRun4(t *testing.T) {
|
2014-05-25 13:13:54 +00:00
|
|
|
ethutil.ReadConfig("", ethutil.LogStd, "")
|
2014-03-24 12:20:34 +00:00
|
|
|
|
|
|
|
db, _ := ethdb.NewMemDatabase()
|
|
|
|
state := NewState(ethutil.NewTrie(db, ""))
|
|
|
|
|
2014-04-27 16:00:38 +00:00
|
|
|
callerScript, err := mutan.Compile(strings.NewReader(`
|
2014-05-25 13:13:54 +00:00
|
|
|
this.store[this.origin()] = 10**20
|
|
|
|
hello := "world"
|
2014-04-11 01:03:14 +00:00
|
|
|
|
2014-05-25 13:13:54 +00:00
|
|
|
return lambda {
|
|
|
|
big to = this.data[0]
|
|
|
|
big from = this.origin()
|
|
|
|
big value = this.data[1]
|
2014-04-19 23:31:01 +00:00
|
|
|
|
2014-05-25 13:13:54 +00:00
|
|
|
if this.store[from] >= value {
|
|
|
|
this.store[from] = this.store[from] - value
|
|
|
|
this.store[to] = this.store[to] + value
|
2014-04-19 23:31:01 +00:00
|
|
|
}
|
2014-05-25 13:13:54 +00:00
|
|
|
}
|
2014-03-30 10:58:37 +00:00
|
|
|
`), false)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
2014-05-25 13:13:54 +00:00
|
|
|
fmt.Println(Disassemble(callerScript))
|
2014-03-24 12:20:34 +00:00
|
|
|
|
2014-05-25 13:13:54 +00:00
|
|
|
callerTx := NewContractCreationTx(ethutil.Big("0"), ethutil.Big("1000"), ethutil.Big("100"), callerScript)
|
|
|
|
callerTx.Sign([]byte("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"))
|
2014-03-24 12:20:34 +00:00
|
|
|
|
|
|
|
// Contract addr as test address
|
2014-04-19 23:31:01 +00:00
|
|
|
gas := big.NewInt(1000)
|
|
|
|
gasPrice := big.NewInt(10)
|
2014-03-24 12:20:34 +00:00
|
|
|
account := NewAccount(ContractAddr, big.NewInt(10000000))
|
2014-04-19 23:31:01 +00:00
|
|
|
fmt.Println("account.Amount =", account.Amount)
|
2014-04-09 16:27:54 +00:00
|
|
|
c := MakeContract(callerTx, state)
|
2014-04-19 23:31:01 +00:00
|
|
|
e := account.ConvertGas(gas, gasPrice)
|
|
|
|
if e != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
fmt.Println("account.Amount =", account.Amount)
|
2014-05-25 13:13:54 +00:00
|
|
|
callerClosure := NewClosure(account, c, callerScript, state, gas, gasPrice)
|
2014-03-24 12:20:34 +00:00
|
|
|
|
2014-04-25 23:54:45 +00:00
|
|
|
vm := NewVm(state, nil, RuntimeVars{
|
2014-04-11 17:29:57 +00:00
|
|
|
Origin: account.Address(),
|
|
|
|
BlockNumber: 1,
|
|
|
|
PrevHash: ethutil.FromHex("5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"),
|
|
|
|
Coinbase: ethutil.FromHex("2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"),
|
|
|
|
Time: 1,
|
|
|
|
Diff: big.NewInt(256),
|
2014-03-24 12:20:34 +00:00
|
|
|
})
|
2014-05-25 13:13:54 +00:00
|
|
|
var ret []byte
|
2014-05-29 21:54:48 +00:00
|
|
|
ret, _, e = callerClosure.Call(vm, nil, nil)
|
2014-04-18 11:41:07 +00:00
|
|
|
if e != nil {
|
|
|
|
fmt.Println("error", e)
|
|
|
|
}
|
2014-05-25 13:13:54 +00:00
|
|
|
fmt.Println(ret)
|
2014-03-24 12:20:34 +00:00
|
|
|
}
|