aboutsummaryrefslogtreecommitdiff
path: root/core/state_transition.go
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2020-06-30 20:56:12 -0400
committerDeterminant <tederminant@gmail.com>2020-06-30 20:56:12 -0400
commitfbe0f2d6b14d7b6fc43068e224412d4e65176550 (patch)
tree5db367ee2d219386c2968f30e51c8c67c1ef8121 /core/state_transition.go
parent7feec02902d52a3abf722613eb9e218e015b723c (diff)
test multi-coin smart contracts
Diffstat (limited to 'core/state_transition.go')
-rw-r--r--core/state_transition.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/state_transition.go b/core/state_transition.go
index 139289f..7a48597 100644
--- a/core/state_transition.go
+++ b/core/state_transition.go
@@ -219,7 +219,6 @@ func (st *StateTransition) TransitionDb() (ret []byte, usedGas uint64, failed bo
if contractCreation {
ret, _, st.gas, vmerr = evm.Create(sender, st.data, st.gas, st.value)
} else {
- log.Debug("here2")
// Increment the nonce for the next transaction
st.state.SetNonce(msg.From(), st.state.GetNonce(sender.Address())+1)
ret, st.gas, vmerr = evm.CallExpert(sender, st.to(), st.data, st.gas, st.value, st.coinID, st.value2)