housekeeping

- remove defunct tracking store implementations
- update splitstore node config
- use mark set type config option (defaulting to mapts); a memory constrained node
  may want to use an on-disk one
This commit is contained in:
vyzo
2021-07-04 18:38:28 +03:00
parent 19d1b1f532
commit 190cb18ab0
6 changed files with 8 additions and 373 deletions
+4 -5
View File
@@ -229,11 +229,9 @@ type Chainstore struct {
}
type Splitstore struct {
ColdStoreType string
HotStoreType string
TrackingStoreType string
MarkSetType string
HotHeaders bool
ColdStoreType string
HotStoreType string
MarkSetType string
}
// // Full Node
@@ -306,6 +304,7 @@ func DefaultFullNode() *FullNode {
Splitstore: Splitstore{
ColdStoreType: "universal",
HotStoreType: "badger",
MarkSetType: "mapts",
},
},
}