The top stack item is multiplied by 4
()
| 80 | |
| 81 | /// The top stack item is multiplied by 4 |
| 82 | pub fn OP_4MUL() -> Script { |
| 83 | script! { |
| 84 | OP_DUP OP_ADD OP_DUP OP_ADD |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | /// The top stack item is multiplied by 2**k |
| 89 | pub fn op_2k_mul(k: u32) -> Script { |
nothing calls this directly
no outgoing calls
no test coverage detected