fix block 512335 problem
This commit is contained in:
parent
d679798abb
commit
9fcba8f90d
|
@ -113,6 +113,8 @@ proc applyMessageAux(computation: var BaseComputation, opCode: static[Op]) =
|
|||
if computation.msg.depth > STACK_DEPTH_LIMIT:
|
||||
raise newException(StackDepthError, "Stack depth limit reached")
|
||||
|
||||
let nilai = computation.vmState.readOnlyStateDb().getBalance(computation.msg.sender)
|
||||
|
||||
if computation.msg.value != 0:
|
||||
let senderBalance =
|
||||
computation.vmState.readOnlyStateDb().
|
||||
|
@ -174,7 +176,7 @@ proc applyMessage(computation: var BaseComputation, opCode: static[Op]) =
|
|||
var snapshot = computation.snapshot()
|
||||
defer: snapshot.dispose()
|
||||
|
||||
when opCode == Call:
|
||||
when opCode in {Call, Create}:
|
||||
try:
|
||||
computation.applyMessageAux(opCode)
|
||||
except VMError:
|
||||
|
|
|
@ -748,7 +748,7 @@ template genCall(callName: untyped, opCode: Op): untyped =
|
|||
else:
|
||||
childMsg.sender = computation.msg.storageAddress
|
||||
|
||||
if opCode == CallCode:
|
||||
when opCode == CallCode:
|
||||
childMsg.storageAddress = computation.msg.storageAddress
|
||||
|
||||
var childComputation = applyChildComputation(computation, childMsg, opCode)
|
||||
|
|
Loading…
Reference in New Issue