restores invariant tests

This commit is contained in:
Vito
2026-03-23 16:49:03 +01:00
parent ce92da9161
commit 009e05a463
2 changed files with 5 additions and 3 deletions

View File

@@ -21,7 +21,10 @@ class ValidVault
public:
void
visitEntry(bool, std::shared_ptr<SLE const> const&, std::shared_ptr<SLE const> const&);
visitEntry(
bool isDelete,
std::shared_ptr<SLE const> const& before,
std::shared_ptr<SLE const> const& after);
bool
finalize(STTx const&, TER const, XRPAmount const, ReadView const&, beast::Journal const&);

View File

@@ -3812,8 +3812,6 @@ public:
void
run() override
{
testVault();
return;
testXRPNotCreated();
testAccountRootsNotRemoved();
testAccountRootsDeletedClean();
@@ -3834,6 +3832,7 @@ public:
testNoModifiedUnmodifiableFields();
testValidPseudoAccounts();
testValidLoanBroker();
testVault();
}
};