Add paytxfee to getwalletinfo, warnings to getnetworkinfo

This commit is contained in:
Stephen
2015-06-11 16:12:34 -04:00
committed by Jack Grigg
parent e940185294
commit 6699b42518
3 changed files with 5 additions and 1 deletions

View File

@@ -409,6 +409,7 @@ UniValue getnetworkinfo(const UniValue& params, bool fHelp)
" }\n"
" ,...\n"
" ]\n"
" \"warnings\": \"...\" (string) any network warnings (such as alert messages) \n"
"}\n"
"\nExamples:\n"
+ HelpExampleCli("getnetworkinfo", "")
@@ -440,5 +441,6 @@ UniValue getnetworkinfo(const UniValue& params, bool fHelp)
}
}
obj.push_back(Pair("localaddresses", localAddresses));
obj.push_back(Pair("warnings", GetWarnings("statusbar")));
return obj;
}