diff options
| author | John Newbery <[email protected]> | 2017-06-15 11:45:08 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2017-07-20 16:55:12 -0400 |
| commit | 4a057152d2635e5a4cff8fd654087fee044efef6 (patch) | |
| tree | 1e2572785b073f269b69e95607a6a804e11c4cf7 /src/wallet/rpcwallet.cpp | |
| parent | [wallet] fix comment for CWallet::Verify() (diff) | |
| download | discoin-4a057152d2635e5a4cff8fd654087fee044efef6.tar.xz discoin-4a057152d2635e5a4cff8fd654087fee044efef6.zip | |
[wallet] [rpc] print wallet name in getwalletinfo
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 4275a9181..030f203d2 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -2447,6 +2447,7 @@ UniValue getwalletinfo(const JSONRPCRequest& request) "Returns an object containing various wallet state info.\n" "\nResult:\n" "{\n" + " \"walletname\": xxxxx, (string) the wallet name\n" " \"walletversion\": xxxxx, (numeric) the wallet version\n" " \"balance\": xxxxxxx, (numeric) the total confirmed balance of the wallet in " + CURRENCY_UNIT + "\n" " \"unconfirmed_balance\": xxx, (numeric) the total unconfirmed balance of the wallet in " + CURRENCY_UNIT + "\n" @@ -2469,6 +2470,7 @@ UniValue getwalletinfo(const JSONRPCRequest& request) UniValue obj(UniValue::VOBJ); size_t kpExternalSize = pwallet->KeypoolCountExternalKeys(); + obj.push_back(Pair("walletname", pwallet->GetName())); obj.push_back(Pair("walletversion", pwallet->GetVersion())); obj.push_back(Pair("balance", ValueFromAmount(pwallet->GetBalance()))); obj.push_back(Pair("unconfirmed_balance", ValueFromAmount(pwallet->GetUnconfirmedBalance()))); |