mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-26 14:05:51 +00:00
Fix issues in applying local transactions.
This commit is contained in:
@@ -277,8 +277,8 @@ void LocalAccount::syncLedger()
|
||||
else
|
||||
{
|
||||
mLgrBalance=as->getBalance();
|
||||
if( (mLgrBalance!=0) && (mAccountSeq==0) ) mAccountSeq=1;
|
||||
if(mAccountSeq<as->getSeq()) mAccountSeq=as->getSeq();
|
||||
if( (mLgrBalance!=0) && (mTxnSeq==0) ) mTxnSeq=1;
|
||||
if(mTxnSeq<as->getSeq()) mTxnSeq=as->getSeq();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user