Fix forward declaration.

This commit is contained in:
Kris Nuttycombe 2020-09-04 07:28:15 -06:00
parent bd4469339a
commit 9d8555cf1b
1 changed files with 1 additions and 1 deletions

View File

@ -3379,7 +3379,7 @@ CAmount getBalanceTaddr(std::string transparentAddress, int minDepth=1, bool ign
return balance;
}
CAmount getBalanceZaddr(std::string address, int minDepth = 1, int maxDepth = INT_MAX, bool ignoreUnspendable=true) {
CAmount getBalanceZaddr(std::string address, int minDepth, int maxDepth, bool ignoreUnspendable) {
CAmount balance = 0;
std::vector<SproutNoteEntry> sproutEntries;
std::vector<SaplingNoteEntry> saplingEntries;