mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-03 20:20:59 +00:00
Remove using namespace beast in base_uint.h
This commit is contained in:
@@ -413,7 +413,7 @@ DirectIPaymentStep::check (
|
||||
|
||||
if (((*sleSrc)[sfFlags] & lsfRequireAuth) &&
|
||||
!((*sleLine)[sfFlags] & authField) &&
|
||||
(*sleLine)[sfBalance] == zero)
|
||||
(*sleLine)[sfBalance] == beast::zero)
|
||||
{
|
||||
JLOG (j_.warn())
|
||||
<< "DirectStepI: can't receive IOUs from issuer without auth."
|
||||
@@ -437,7 +437,7 @@ DirectIPaymentStep::check (
|
||||
|
||||
{
|
||||
auto const owed = creditBalance (ctx.view, dst_, src_, currency_);
|
||||
if (owed <= zero)
|
||||
if (owed <= beast::zero)
|
||||
{
|
||||
auto const limit = creditLimit (ctx.view, dst_, src_, currency_);
|
||||
if (-owed >= limit)
|
||||
|
||||
Reference in New Issue
Block a user