aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-23 22:11:55 +0800
committerobscuren <geffobscura@gmail.com>2014-06-23 22:11:55 +0800
commit16e8fc7427115e67096c6056b2ad9401803fcb44 (patch)
treec1928398d8554f9bfd7421b21feb8a3eec1da03c /ethchain
parent614624754d2dcaf9344a3efbfa880c9b0ddba6be (diff)
downloadgo-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar
go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.gz
go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.bz2
go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.lz
go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.xz
go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.tar.zst
go-tangerine-16e8fc7427115e67096c6056b2ad9401803fcb44.zip
Logging order
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/state_object.go1
-rw-r--r--ethchain/vm.go13
2 files changed, 8 insertions, 6 deletions
diff --git a/ethchain/state_object.go b/ethchain/state_object.go
index 0a2e28ded..270c9a7f8 100644
--- a/ethchain/state_object.go
+++ b/ethchain/state_object.go
@@ -91,7 +91,6 @@ func (c *StateObject) SetAddr(addr []byte, value interface{}) {
func (c *StateObject) SetStorage(num *big.Int, val *ethutil.Value) {
addr := ethutil.BigToBytes(num, 256)
- // FIXME This should be handled in the Trie it self
if val.BigInt().Cmp(ethutil.Big0) == 0 {
c.state.trie.Delete(string(addr))
diff --git a/ethchain/vm.go b/ethchain/vm.go
index 432bc4e6d..4c6c5e24d 100644
--- a/ethchain/vm.go
+++ b/ethchain/vm.go
@@ -93,7 +93,7 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
if r := recover(); r != nil {
ret = closure.Return(nil)
err = fmt.Errorf("%v", r)
- fmt.Println("vm err", err)
+ fmt.Println(err)
}
}()
@@ -106,11 +106,11 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
require := func(m int) {
if stack.Len() < m {
isRequireError = true
- panic(fmt.Sprintf("stack = %d, req = %d", stack.Len(), m))
+ panic(fmt.Sprintf("stack err = %d, req = %d", stack.Len(), m))
}
}
- // Instruction pointer
+ // Program counter
pc := big.NewInt(0)
// Current step count
step := 0
@@ -593,16 +593,18 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
// Generate a new address
addr := ethutil.CreateAddress(closure.caller.Address(), closure.caller.N())
+
+ vm.Printf(" (*) %x", addr).Endl()
+
// Create a new contract
contract := vm.state.NewStateObject(addr)
contract.Amount = value
// Set the init script
- contract.initScript = mem.Get(offset.Int64(), size.Int64())
+ contract.initScript = ethutil.BigD(mem.Get(offset.Int64(), size.Int64())).Bytes()
// Transfer all remaining gas to the new
// contract so it may run the init script
gas := new(big.Int).Set(closure.Gas)
- //closure.UseGas(gas)
// Create the closure
c := NewClosure(closure.caller,
@@ -613,6 +615,7 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
closure.Price)
// Call the closure and set the return value as
// main script.
+ var err error
c.Script, gas, err = c.Call(vm, nil, hook)
if err != nil {