From 6caa35831520fc86de00c8ae7ae04a9850b02bea Mon Sep 17 00:00:00 2001 From: Milad Nazari Date: Thu, 16 Nov 2017 00:02:19 +0100 Subject: [PATCH] Set minimum donation % from 1 to 0, default is still 5% --- src/Options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Options.cpp b/src/Options.cpp index 40c65a63..4a541525 100644 --- a/src/Options.cpp +++ b/src/Options.cpp @@ -478,7 +478,7 @@ bool Options::parseArg(int key, uint64_t arg) break; case 1003: /* --donate-level */ - if (arg < 1 || arg > 99) { + if (arg < 0 || arg > 99) { return true; }