From 9e2129338afdd0ab6ff327d0a305bfed7d24b7e1 Mon Sep 17 00:00:00 2001 From: Anton Evangelatov Date: Mon, 6 Sep 2021 17:07:19 +0200 Subject: [PATCH] clarify that 0 is unlimited --- node/config/doc_gen.go | 2 +- node/config/types.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/node/config/doc_gen.go b/node/config/doc_gen.go index 29b182490..adb3b9485 100644 --- a/node/config/doc_gen.go +++ b/node/config/doc_gen.go @@ -257,7 +257,7 @@ as a multiplier of the minimum collateral bound`, Type: "int64", Comment: `The maximum allowed disk usage size in bytes of staging deals not yet -passed to the sealing node by the markets service`, +passed to the sealing node by the markets service. 0 is unlimited.`, }, { Name: "SimultaneousTransfers", diff --git a/node/config/types.go b/node/config/types.go index 3c548301e..845566537 100644 --- a/node/config/types.go +++ b/node/config/types.go @@ -127,7 +127,7 @@ type DealmakingConfig struct { // as a multiplier of the minimum collateral bound MaxProviderCollateralMultiplier uint64 // The maximum allowed disk usage size in bytes of staging deals not yet - // passed to the sealing node by the markets service + // passed to the sealing node by the markets service. 0 is unlimited. MaxStagingDealsBytes int64 // The maximum number of parallel online data transfers (storage+retrieval) SimultaneousTransfers uint64