-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: purely rely on in-memory wallets based on transactions (#2209)
* refactor: purely rely on in-memory wallets based on transactions * refactor: purely rely on in-memory wallets based on transactions * fix(core-database-postgres): compare vote balance objects * test: use wallet manager instead of database * refactor(core-database): use no longer used properties * test(core-blockchain): expect call without arguments * fix: await integrity verifier results * test(core-blockchain): do not pass any arguments to buildWallets * test(core-database): remove shutdown assertion * test(core-api): wallet manager reference * refactor(core-database-postgres): remove extraneous object.values call * style(core-database-postgres): naming * Update integrity-verifier.ts * refactor(core-database-postgres): make __ methods private * Update integrity-verifier.ts * refactor(core-database-postgres): remove missed blocks from integrity verifier
- Loading branch information
1 parent
d00d471
commit 477db4c
Showing
35 changed files
with
108 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export * from "./postgres-connection"; | ||
export * from "./migrations"; | ||
export * from "./spv"; | ||
export * from "./integrity-verifier"; | ||
export * from "./models"; | ||
export * from "./repositories"; | ||
export * from "./plugin"; |
Oops, something went wrong.