mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Pass by reference in processTransaction
This commit is contained in:
committed by
Vinnie Falco
parent
d8d51e8103
commit
de6f678de7
@@ -132,7 +132,7 @@ std::uint32_t TxnSignApiFacade::getSeq () const
|
||||
}
|
||||
|
||||
void TxnSignApiFacade::processTransaction (
|
||||
Transaction::ref tpTrans,
|
||||
Transaction::pointer& transaction,
|
||||
bool bAdmin,
|
||||
bool bLocal,
|
||||
NetworkOPs::FailHard failType)
|
||||
@@ -140,7 +140,7 @@ void TxnSignApiFacade::processTransaction (
|
||||
if (!netOPs_) // Unit testing.
|
||||
return;
|
||||
|
||||
netOPs_->processTransaction (tpTrans, bAdmin, bLocal, failType);
|
||||
netOPs_->processTransaction(transaction, bAdmin, bLocal, failType);
|
||||
}
|
||||
|
||||
bool TxnSignApiFacade::findPathsForOneIssuer (
|
||||
|
||||
Reference in New Issue
Block a user