mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
Fix test failures
Signed-off-by: JCW <a1q123456@users.noreply.github.com>
This commit is contained in:
@@ -142,7 +142,7 @@ TrustLine::getQualityIn() const
|
||||
{
|
||||
auto const quality =
|
||||
viewLowest_ ? rippleState_.getLowQualityIn() : rippleState_.getHighQualityIn();
|
||||
return Rate{quality.value_or(QUALITY_ONE)};
|
||||
return Rate{quality.value_or(0)};
|
||||
}
|
||||
|
||||
Rate
|
||||
@@ -150,7 +150,7 @@ TrustLine::getQualityOut() const
|
||||
{
|
||||
auto const quality =
|
||||
viewLowest_ ? rippleState_.getLowQualityOut() : rippleState_.getHighQualityOut();
|
||||
return Rate{quality.value_or(QUALITY_ONE)};
|
||||
return Rate{quality.value_or(0)};
|
||||
}
|
||||
|
||||
Json::Value
|
||||
|
||||
Reference in New Issue
Block a user