Skip to content

Commit

Permalink
Fix lexicographical compare during tfRequireAuth processing
Browse files Browse the repository at this point in the history
  • Loading branch information
nbougalis authored and vinniefalco committed May 13, 2014
1 parent bee12fb commit 22af796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ripple_app/transactors/CreateOfferLegacy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ TER ClassicOfferCreateTransactor::doApply ()
? terNO_LINE
: tecNO_LINE;
}
else if (!is_bit_set (sleRippleState->getFieldU32 (sfFlags), (canonical_gt ? lsfHighAuth : lsfLowAuth)))
else if (!is_bit_set (sleRippleState->getFieldU32 (sfFlags), (canonical_gt ? lsfLowAuth : lsfHighAuth)))
{
m_journal.debug <<
"delay: can't receive IOUs from issuer without auth.";
Expand Down

0 comments on commit 22af796

Please sign in to comment.