BitCoinClient.Transaction.IsFinal C# (CSharp) Method

IsFinal() public method

public IsFinal ( ) : bool
return bool
        public bool IsFinal()
        {
            if (mLockTime == 0)
                return true;

            foreach (TransactionInput txin in mInputs)
            {
                if (!txin.IsFinal())
                    return false;
            }

            return true;
        }