diff options
author | obscuren <geffobscura@gmail.com> | 2015-06-10 03:12:44 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-06-10 03:12:44 +0800 |
commit | 667f5a09c399bcd6ed44ef0c6aedbb4d6a1d0cb9 (patch) | |
tree | 0ced967e60315698cc5056a984d7678c417bc1ce /xeth | |
parent | 5950755b12f204c957542035739db09860c69a2a (diff) | |
parent | 14994fa21bf6f05554ff370d41005d06b68d20a5 (diff) | |
download | dexon-667f5a09c399bcd6ed44ef0c6aedbb4d6a1d0cb9.tar dexon-667f5a09c399bcd6ed44ef0c6aedbb4d6a1d0cb9.tar.gz dexon-667f5a09c399bcd6ed44ef0c6aedbb4d6a1d0cb9.tar.bz2 dexon-667f5a09c399bcd6ed44ef0c6aedbb4d6a1d0cb9.tar.lz dexon-667f5a09c399bcd6ed44ef0c6aedbb4d6a1d0cb9.tar.xz dexon-667f5a09c399bcd6ed44ef0c6aedbb4d6a1d0cb9.tar.zst dexon-667f5a09c399bcd6ed44ef0c6aedbb4d6a1d0cb9.zip |
Merge branch 'release/0.9.28' into develop
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/xeth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index 9b49b412c..d2f992084 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -957,7 +957,7 @@ func (self *XEth) Transact(fromStr, toStr, nonceStr, valueStr, gasStr, gasPriceS if err := self.backend.TxPool().Add(tx); err != nil { return "", err } - state.SetNonce(from, nonce+1) + //state.SetNonce(from, nonce+1) if contractCreation { addr := core.AddressFromMessage(tx) |