mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Fix a bug that prevented account notifications from going out.
This commit is contained in:
@@ -78,7 +78,7 @@ std::vector<RippleAddress> TransactionMetaSet::getAffectedAccounts()
|
||||
{
|
||||
BOOST_FOREACH(const SerializedType& field, inner->peekData())
|
||||
{
|
||||
const STAccount* sa = dynamic_cast<const STAccount*>(&it);
|
||||
const STAccount* sa = dynamic_cast<const STAccount*>(&field);
|
||||
if (sa)
|
||||
addIfUnique(accounts, sa->getValueNCA());
|
||||
else if ((field.getFName() == sfLowLimit) || (field.getFName() == sfHighLimit))
|
||||
|
||||
Reference in New Issue
Block a user