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

GetNewAddress() public method

public GetNewAddress ( string account ) : string
account string
return string
        public string GetNewAddress(string account)
        {
            return string.IsNullOrWhiteSpace(account)
                ? _rpcConnector.MakeRequest<string>(RpcMethods.getnewaddress)
                : _rpcConnector.MakeRequest<string>(RpcMethods.getnewaddress, account);
        }