Merge remote-tracking branch 'XRPLF/develop' into ximinez/online-delete-gaps

* XRPLF/develop:
  docs: Add --parallel flag to cmake build commands in BUILD.md (7302)
  fix: Fix wrong hybrid offer orderbook placement and update `LedgerStateFix` to amend `ExchangeRate` meta (7087)
  style: More clang-tidy identifier renaming (7290)
  fix: Update pDEX invariant firing under a valid offer deletion (7118)
  fix: Fix multisign and signfor to check for delegate (7064)
  refactor: Fix `sfGeneric` and `sfInvalid` field names (7300)
  docs: Fix some comments to improve readability (7122)
  feat: Propagate underlying MPT flags to vault shares (7077)
This commit is contained in:
Ed Hennis
2026-05-21 11:59:26 +01:00
217 changed files with 4179 additions and 1970 deletions

View File

@@ -31,9 +31,9 @@ class LedgerMaster_test : public beast::unit_test::Suite
{
using namespace jtx;
return envconfig([&](std::unique_ptr<Config> cfg) {
cfg->NETWORK_ID = networkID;
cfg->networkId = networkID;
// This test relies on ledger hash so must lock it to fee 10.
cfg->FEES.reference_fee = 10;
cfg->fees.referenceFee = 10;
return cfg;
});
}