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

Consolidate() public method

Queries to wallets with over 10 thousand addresses will become sluggish especially in the web interface. The auto_consolidate command will remove some inactive archived addresses from the wallet and insert them as forwarding addresses (see receive payments API). You will still receive callback notifications for these addresses however they will no longer be part of the main wallet and will be stored server side.
public Consolidate ( int Days ) : List
Days int A good value for days is 60 i.e. addresses which have not received transactions in the last 60 days will be consolidated.
return List
        public List<string> Consolidate(int Days = 0)
        {
            return BCw.Consolidate(Days);
        }