BitcoinLib.Services.CoinService.ListAccounts C# (CSharp) Method

ListAccounts() public method

public ListAccounts ( int minConf, bool includeWatchonly ) : decimal>.Dictionary
minConf int
includeWatchonly bool
return decimal>.Dictionary
        public Dictionary<string, decimal> ListAccounts(int minConf, bool? includeWatchonly)
        {
            return includeWatchonly == null
                ? _rpcConnector.MakeRequest<Dictionary<string, decimal>>(RpcMethods.listaccounts, minConf)
                : _rpcConnector.MakeRequest<Dictionary<string, decimal>>(RpcMethods.listaccounts, minConf, includeWatchonly);
        }