BitSharp.Core.Domain.SpentTx.SpentTx C# (CSharp) Method

SpentTx() public method

public SpentTx ( UInt256 txHash, int confirmedBlockIndex, int txIndex, int outputCount ) : BitSharp.Common
txHash UInt256
confirmedBlockIndex int
txIndex int
outputCount int
return BitSharp.Common
        public SpentTx(UInt256 txHash, int confirmedBlockIndex, int txIndex, int outputCount)
        {
            TxHash = txHash;
            ConfirmedBlockIndex = confirmedBlockIndex;
            TxIndex = txIndex;
            OutputCount = outputCount;
        }