From 9cfb7ac340e3f3b0a9dfef20750e477ed97ed2ef Mon Sep 17 00:00:00 2001 From: Mayukha Vadari Date: Mon, 20 Oct 2025 17:20:35 -0400 Subject: [PATCH] fix build issue --- src/test/app/EscrowSmart_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/app/EscrowSmart_test.cpp b/src/test/app/EscrowSmart_test.cpp index 6eaed01e2c..f8f21c1cc0 100644 --- a/src/test/app/EscrowSmart_test.cpp +++ b/src/test/app/EscrowSmart_test.cpp @@ -853,7 +853,7 @@ struct EscrowSmart_test : public beast::unit_test::suite env(token::createOffer(carol, tokenId, XRP(100)), token::owner(alice)); env(offer(alice, carol["GBP"](0.1), XRP(100))); - env(create(alice, carol, XRP(1000), 100s, alice.pk())); + env(paychan::create(alice, carol, XRP(1000), 100s, alice.pk())); pdomain::Credentials credentials{{alice, "first credential"}}; env(pdomain::setTx(alice, credentials)); env(signers(alice, 1, {{carol, 1}}));