From 20fb2ba387ec7b258fbdbdbf1054dff4e247e104 Mon Sep 17 00:00:00 2001 From: Shawn Xie Date: Thu, 12 Dec 2024 13:42:53 -0800 Subject: [PATCH] comment --- src/test/app/LPTokenTransfer_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/app/LPTokenTransfer_test.cpp b/src/test/app/LPTokenTransfer_test.cpp index eb7ec2b8405..3c77ddfb371 100644 --- a/src/test/app/LPTokenTransfer_test.cpp +++ b/src/test/app/LPTokenTransfer_test.cpp @@ -353,7 +353,7 @@ class LPTokenTransfer_test : public jtx::AMMTest env(token::mint(bob, 0), txflags(tfTransferable)); env.close(); - // bob creates a sell offer accepting lptoken + // bob creates a sell offer for lptoken uint256 const sellOfferIndex = keylet::nftoffer(bob, env.seq(bob)).key; env(token::createOffer(bob, nftID, STAmount{lpIssue, 10}), txflags(tfSellNFToken)); @@ -378,7 +378,7 @@ class LPTokenTransfer_test : public jtx::AMMTest env(trust(gw, carol["USD"](1'000'000), tfClearFreeze)); env.close(); - // carol can buy the nft + // carol can now accept the offer and own the nft env(token::acceptSellOffer(carol, sellOfferIndex)); env.close();