Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
BitcoinMechanic committed Oct 14, 2024
1 parent 83dba5c commit caf1844
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions scripts/services/getConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,16 +365,23 @@ export const getConfig: T.ExpectedExports.getConfig = async (effects) => {
name: "Advanced",
description: "Advanced Settings",
spec: {
maxmempool: {
type: "number",
nullable: false,
name: "Max Mempool Size",
description:
"Keep the transaction memory pool below <n> megabytes.",
range: "[1,*)",
integral: true,
units: "MiB",
default: 300,
mempool: {
type: "object",
name: "Mempool",
description: "Mempool Settings",
spec: {
maxmempool: {
type: "number",
nullable: false,
name: "Max Mempool Size",
description:
"Keep the transaction memory pool below <n> megabytes.",
range: "[1,*)",
integral: true,
units: "MiB",
default: 300,
},
},
},
peers: {
type: "object",
Expand Down

0 comments on commit caf1844

Please sign in to comment.