add grpc call to get new deposit subaddress

This commit is contained in:
woodser 2021-09-18 15:27:18 -04:00
parent 91cd984d85
commit 6e21508a94
4 changed files with 38 additions and 0 deletions

View file

@ -280,6 +280,10 @@ public class CoreApi {
public BalancesInfo getBalances(String currencyCode) {
return walletsService.getBalances(currencyCode);
}
public String getNewDepositSubaddress() {
return walletsService.getNewDepositSubaddress();
}
public long getAddressBalance(String addressString) {
return walletsService.getAddressBalance(addressString);