Check the ops limit of this script against the consensus limit.
| 1569 | |
| 1570 | //! Check the ops limit of this script against the consensus limit. |
| 1571 | bool CheckOpsLimit() const { |
| 1572 | if (IsTapscript(m_script_ctx)) return true; |
| 1573 | if (const auto ops = GetOps()) return *ops <= MAX_OPS_PER_SCRIPT; |
| 1574 | return true; |
| 1575 | } |
| 1576 | |
| 1577 | /** Whether this node is of type B, K or W. (That is, anything but V.) */ |
| 1578 | bool IsBKW() const { |