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

Move() public method

public Move ( string fromAccount, string toAccount, decimal amount, int minConf, string comment ) : bool
fromAccount string
toAccount string
amount decimal
minConf int
comment string
return bool
        public bool Move(string fromAccount, string toAccount, decimal amount, int minConf, string comment)
        {
            return _rpcConnector.MakeRequest<bool>(RpcMethods.move, fromAccount, toAccount, amount, minConf, comment);
        }