BitcoinLib.BlockchainAPI.Wallet.ArchiveAddress C# (CSharp) Method

ArchiveAddress() public method

To improve wallet performance addresses which have not been used recently should be moved to an archived state. They will still be held in the wallet but will no longer be included in the "list" or "list-transactions" calls.
public ArchiveAddress ( string adr ) : string
adr string Bitcoin adrress
return string
        public string ArchiveAddress(string adr)
        {
            return BCw.ArchiveAddress(adr);
        }