This commit is contained in:
boufni95 2025-03-14 20:23:02 +00:00
parent bea69f9819
commit 375c5b4faa

View file

@ -111,8 +111,10 @@ export const safelySetUserBalance = async (T: TestBase, user: TestUserData, amou
}
export const runSanityCheck = async (T: TestBase) => {
T.main.storage.dbs.setDebug(true)
const sanityChecker = new SanityChecker(T.main.storage, T.main.lnd)
await sanityChecker.VerifyEventsLog()
T.main.storage.dbs.setDebug(false)
}
export const expectThrowsAsync = async (promise: Promise<any>, errorMessage?: string) => {