Skip to content

Commit 0cc0ee3

Browse files
committed
fix: set omnibus.toml to defaults
Signed-off-by: William Hankins <william@sundae.fi>
1 parent b1a2b31 commit 0cc0ee3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

processes/omnibus/omnibus.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ genesis-key = "5b3139312c36362c3134302c3138352c3133382c31312c3233372c3230372c323
88
# Download max age in hours. E.g. 8 means 8 hours (if there isn't any snapshot within this time range download from Mithril)
99
download-max-age = "never"
1010
# Pause constraint E.g. "epoch:100", "block:1200"
11-
pause = "epoch:300"
11+
pause = "none"
1212

1313
[module.upstream-chain-fetcher]
1414
sync-point = "snapshot"
@@ -71,7 +71,7 @@ store-registration-history = false
7171
store-delegation-history = false
7272
store-mir-history = false
7373
store-withdrawal-history = false
74-
store-addresses = true
74+
store-addresses = false
7575

7676
[module.drep-state]
7777
# Enables /governance/dreps/{drep_id} endpoint (Requires store-delegators to be enabled)
@@ -131,9 +131,9 @@ clear-on-start = true
131131
[module.address-state]
132132
# Enables /addresses/{address}, /addresses/{address}/extended,
133133
# /addresses/{address}/utxos/{asset}, and /addresses/{address}/utxos endpoints
134-
store-info = true
134+
store-info = false
135135
# Enables /addresses/{address}/totals endpoint
136-
store-totals = true
136+
store-totals = false
137137
# Enables /addresses/{address}/transactions endpoint
138138
store-transactions = false
139139

processes/omnibus/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ pub async fn main() -> Result<()> {
118118
SPDDState::register(&mut process);
119119
DRDDState::register(&mut process);
120120
Consensus::register(&mut process);
121-
//ChainStore::register(&mut process);
121+
ChainStore::register(&mut process);
122122

123123
Clock::<Message>::register(&mut process);
124124
RESTServer::<Message>::register(&mut process);

0 commit comments

Comments
 (0)