Fix rebase issue where pwalletMain was used instead of pwallet

Ser./Deser. nInternalChainCounter as last element
This commit is contained in:
Jonas Schnelli
2017-03-28 09:18:20 +02:00
parent 9382f0425e
commit 4115af7ac7
2 changed files with 2 additions and 2 deletions

View File

@@ -2439,7 +2439,7 @@ UniValue getwalletinfo(const JSONRPCRequest& request)
UniValue obj(UniValue::VOBJ);
size_t kpExternalSize = pwalletMain->KeypoolCountExternalKeys();
size_t kpExternalSize = pwallet->KeypoolCountExternalKeys();
obj.push_back(Pair("walletversion", pwallet->GetVersion()));
obj.push_back(Pair("balance", ValueFromAmount(pwallet->GetBalance())));
obj.push_back(Pair("unconfirmed_balance", ValueFromAmount(pwallet->GetUnconfirmedBalance())));