Removed some comments

This commit is contained in:
obscuren
2015-03-21 14:51:45 +01:00
parent 4300f2a0fa
commit ce862ee758
2 changed files with 3 additions and 3 deletions

View File

@ -611,7 +611,7 @@ func (self *XEth) Transact(fromStr, toStr, valueStr, gasStr, gasPriceStr, codeSt
}
state := self.chainManager.TxState()
nonce := state.NewNonce(from) //state.GetNonce(from)
nonce := state.NewNonce(from)
tx.SetNonce(nonce)
if err := self.sign(tx, from, false); err != nil {
@ -620,7 +620,6 @@ func (self *XEth) Transact(fromStr, toStr, valueStr, gasStr, gasPriceStr, codeSt
if err := self.eth.TxPool().Add(tx); err != nil {
return "", err
}
//state.IncrementNonce(from)
if contractCreation {
addr := core.AddressFromMessage(tx)