Skip to content

Commit 13bff46

Browse files
committed
reserve default of 0 plots
1 parent ac3aa89 commit 13bff46

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ DESCRIPTION:
9696
Tool will perform the following calculation (AVAILABLE_DISK_SPACE/SINGLE_PLOT_SIZE)-RESERVED_PLOTS.
9797

9898
GLOBAL OPTIONS:
99-
--reserve RESERVE, -r RESERVE RESERVE. the amount of plots to reserve. (default: 1)
99+
--reserve RESERVE, -r RESERVE RESERVE. the amount of plots to reserve. (default: 0)
100100
--verbose, -v enable verbose mode. (default: false)
101101
--help, -h show help (default: false)
102102
--version, -V print version (default: false)

internal/cli/cli.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
var (
1414
Args = os.Args
1515
// Reserved defines the default amount of plots to reserve
16-
Reserved uint64 = 1
16+
Reserved uint64 = 0
1717
)
1818

1919
// Context describes the environment of the tool execution

0 commit comments

Comments
 (0)