Skip to content

Commit

Permalink
[FOLD] Resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
gregtatcam committed Oct 23, 2023
1 parent 7a7c9cc commit 404b1b4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ripple/app/tx/impl/XChainBridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ transferHelper(
/*default path*/ true,
/*partial payment*/ false,
/*owner pays transfer fee*/ true,
/*offer crossing*/ false,
/*offer crossing*/ OfferCrossing::no,
/*limit quality*/ std::nullopt,
/*sendmax*/ std::nullopt,
j);
Expand Down
12 changes: 11 additions & 1 deletion src/test/app/Offer_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5403,7 +5403,16 @@ class Offer4_test : public Offer0_test
void
run() override
{
Offer0_test::run(4, true);
Offer0_test::run(4);
}
};

class Offer5_test : public Offer0_test
{
void
run() override
{
Offer0_test::run(5, true);
}
};

Expand Down Expand Up @@ -5435,6 +5444,7 @@ BEAST_DEFINE_TESTSUITE_PRIO(Offer1, tx, ripple, 4);
BEAST_DEFINE_TESTSUITE_PRIO(Offer2, tx, ripple, 4);
BEAST_DEFINE_TESTSUITE_PRIO(Offer3, tx, ripple, 4);
BEAST_DEFINE_TESTSUITE_PRIO(Offer4, tx, ripple, 4);
BEAST_DEFINE_TESTSUITE_PRIO(Offer5, tx, ripple, 4);
BEAST_DEFINE_TESTSUITE_MANUAL_PRIO(Offer_manual, tx, ripple, 20);

} // namespace test
Expand Down

0 comments on commit 404b1b4

Please sign in to comment.