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

GetPublicTransaction() public method

public GetPublicTransaction ( string txId ) : DecodeRawTransactionResponse
txId string
return DecodeRawTransactionResponse
        public DecodeRawTransactionResponse GetPublicTransaction(string txId)
        {
            var rawTransaction = GetRawTransaction(txId, 0).Hex;
            return DecodeRawTransaction(rawTransaction);
        }