remove unneeded param from transferBalance
This commit is contained in:
parent
44688259f1
commit
4ed98e03d1
|
@ -109,7 +109,7 @@ proc commit*(snapshot: var ComputationSnapshot) {.inline.} =
|
||||||
proc dispose*(snapshot: var ComputationSnapshot) {.inline.} =
|
proc dispose*(snapshot: var ComputationSnapshot) {.inline.} =
|
||||||
snapshot.snapshot.dispose()
|
snapshot.snapshot.dispose()
|
||||||
|
|
||||||
proc transferBalance(computation: var BaseComputation, opCode: static[Op]) =
|
proc transferBalance(computation: var BaseComputation) =
|
||||||
if computation.msg.depth >= MaxCallDepth:
|
if computation.msg.depth >= MaxCallDepth:
|
||||||
raise newException(StackDepthError, "Stack depth limit reached")
|
raise newException(StackDepthError, "Stack depth limit reached")
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@ proc applyMessage(computation: var BaseComputation, opCode: static[Op]): bool =
|
||||||
|
|
||||||
when opCode in {Call, Create}:
|
when opCode in {Call, Create}:
|
||||||
try:
|
try:
|
||||||
computation.transferBalance(opCode)
|
computation.transferBalance()
|
||||||
except VMError:
|
except VMError:
|
||||||
snapshot.revert()
|
snapshot.revert()
|
||||||
debug "transferBalance failed", msg = computation.error.info
|
debug "transferBalance failed", msg = computation.error.info
|
||||||
|
|
Loading…
Reference in New Issue