Skip to content
Snippets Groups Projects

fix(1441): Add config's storage into BMA /node/summary - close #1441

Merged Benoit Lavenier requested to merge fix/1441/1.8/node_summary_with_storage into release/1.8
4 files
+ 22
2
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -22,6 +22,12 @@ export class NodeBinding extends AbstractController {
software: "duniter",
version: this.server.version,
forkWindowSize: this.server.conf.forksize,
storage: {
transactions: this.server.conf.storage
? this.server.conf.storage.transactions
: true, // true by default (see app/module/config.ts)
wotwizard: this.server.conf.storage?.wotwizard || false, // false by default (see app/module/config.ts)
},
},
};
};
Loading