-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use BoltDB for storages which uses the ObjectStorage * Ignore local hive.go * - Adapting interfaces to be able to switch between badger and bolt * Skip garbage collection with bolt * - Use DeletePrefix instead of iterating and then deleting * - Properly handling ErrKeyNotFound in database pkg * - Remove the custom prefixes from the ledger db when streaming the keys * - Remove badger and all its options - Replaced database package with new store package that utilized the hive.go kvstore * - Load maximum of 100 bundles in the dashboard explorer to avoid killing the node with bundle replay attacks * - Removed store pkg - Creating different bolt db files to separate tangle, snapshot and spent addresses * - Properly close the autopeering db when shutting down the plugin * - Fixed the db size metrics in the dashboard * - Tuning bolt db options to have better performance for our usecase * - Renamed lots of functions that had badger in the name * Add YRTSI and ORTSI to transaction metadata * - Updated to latest hive.go * - Added back GOMAXPROCS support * - Removed NoFreelistSync from the bolt options, since this means opening the db will take a lot of time, since the whole db needs to be scanned to build the freelist * - Properly handle the abortion of the ledger iteration * - Review changes * - Prepare for rc9 * - Fix for Max * - Run packr with latest changes * - Woof woof * Fix spammer settings * Fixed changelog Co-authored-by: Luca Moser <[email protected]> Co-authored-by: muXxer <[email protected]>
- Loading branch information
1 parent
219781c
commit 69da96d
Showing
45 changed files
with
838 additions
and
1,104 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,4 @@ hornet.log | |
layer*.csv | ||
coordinator.state | ||
coordinator.tree | ||
hive.go/ |
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
Oops, something went wrong.