Example #1
0
        private JObject?GetTransactionPoolByHash(string txHash)
        {
            var transaction = _transactionPool.GetByHash(HexUtils.HexToUInt256(txHash));

            return(transaction?.ToJson());
        }