mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-26 22:15:52 +00:00
Actually set the cached transaction state.
This commit is contained in:
@@ -171,11 +171,11 @@ TER Transactor::preCheck()
|
|||||||
{
|
{
|
||||||
if (mTxn.isKnownBad() || (!isSetBit(mParams, tapNO_CHECK_SIGN) && !mTxn.checkSign(mSigningPubKey)))
|
if (mTxn.isKnownBad() || (!isSetBit(mParams, tapNO_CHECK_SIGN) && !mTxn.checkSign(mSigningPubKey)))
|
||||||
{
|
{
|
||||||
mTxn.setGood();
|
mTxn.setBad();
|
||||||
WriteLog (lsWARNING, Transactor) << "applyTransaction: Invalid transaction: bad signature";
|
WriteLog (lsWARNING, Transactor) << "applyTransaction: Invalid transaction: bad signature";
|
||||||
return temINVALID;
|
return temINVALID;
|
||||||
}
|
}
|
||||||
mTxn.isKnownGood();
|
mTxn.setGood();
|
||||||
}
|
}
|
||||||
|
|
||||||
return tesSUCCESS;
|
return tesSUCCESS;
|
||||||
|
|||||||
Reference in New Issue
Block a user