Fix comments

Signed-off-by: JCW <a1q123456@users.noreply.github.com>
This commit is contained in:
JCW
2026-03-25 18:36:42 +00:00
parent aebae05e3e
commit c5d4d6f2fa
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ public:
[[nodiscard]] STAmount
amount(T value) const
{
return amountFromString(issue(), std::to_string(value));
return amountFromString(issue(), to_string(value));
}
/**

View File

@@ -100,7 +100,7 @@ TxTest::submit(std::shared_ptr<STTx const> stx)
void
TxTest::createAccount(Account const& account, XRPAmount xrp, uint32_t accountFlags)
{
EXPECT_EQ(
ASSERT_EQ(
submit(transactions::PaymentBuilder{Account::master, account, xrp}, Account::master).ter,
tesSUCCESS);