diff options
author | laanwj <126646+laanwj@users.noreply.github.com> | 2022-02-03 13:36:10 +0100 |
---|---|---|
committer | laanwj <126646+laanwj@users.noreply.github.com> | 2022-02-03 13:36:56 +0100 |
commit | cf79c56e65595612d899f0551348656b00d1108f (patch) | |
tree | d88dabf58c050a59ddedef397c2740f9483241eb | |
parent | d570a63894d5285d350b628b47014abba280743f (diff) |
init: Remove confusing '(possible integer overflow?)' from error message
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 015e17596c..26fed81360 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1131,7 +1131,7 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info) auto opt_max_upload = ParseByteUnits(args.GetArg("-maxuploadtarget", DEFAULT_MAX_UPLOAD_TARGET), ByteUnit::M); if (!opt_max_upload) { - return InitError(strprintf(_("Unable to parse -maxuploadtarget: '%s' (possible integer overflow?)"), args.GetArg("-maxuploadtarget", ""))); + return InitError(strprintf(_("Unable to parse -maxuploadtarget: '%s'"), args.GetArg("-maxuploadtarget", ""))); } // ********************************************************* Step 4a: application initialization |