예제 #1
0
        public INativeList <ITransaction> GetMempoolTransactions(INativeList <PaymentAddress> addresses, bool useTestnetRules)
        {
            IntPtr txs = ChainNative.chain_get_mempool_transactions_from_wallets
                         (
                nativeInstance_,
                addresses.NativeInstance,
                useTestnetRules? 1 : 0
                         );

            return(new TransactionList(txs));
        }