Fix for creating a tx from an unknown account

This commit is contained in:
obscuren 2014-07-01 12:16:14 +02:00
parent 2bbc204328
commit 0ce9003ba7
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ func (lib *PEthereum) createTx(key, recipient, valueStr, gasStr, gasPriceStr, sc
tx = ethchain.NewTransactionMessage(hash, value, gas, gasPrice, data)
}
acc := lib.stateManager.TransState().GetStateObject(keyPair.Address())
acc := lib.stateManager.TransState().GetOrNewStateObject(keyPair.Address())
tx.Nonce = acc.Nonce
acc.Nonce += 1
lib.stateManager.TransState().UpdateStateObject(acc)