Add paytxfee to getwalletinfo, warnings to getnetworkinfo

This commit is contained in:
Stephen
2015-06-11 16:12:34 -04:00
parent 55294a9fb6
commit ef2a3de25c
3 changed files with 5 additions and 1 deletions

View File

@@ -408,6 +408,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", "")
@@ -439,5 +440,6 @@ UniValue getnetworkinfo(const UniValue& params, bool fHelp)
}
}
obj.push_back(Pair("localaddresses", localAddresses));
obj.push_back(Pair("warnings", GetWarnings("statusbar")));
return obj;
}