The top stack item is multiplied by 16
()
| 96 | |
| 97 | /// The top stack item is multiplied by 16 |
| 98 | pub fn OP_16MUL() -> Script { |
| 99 | script! { |
| 100 | OP_DUP OP_ADD OP_DUP OP_ADD |
| 101 | OP_DUP OP_ADD OP_DUP OP_ADD |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | /// The top stack item is multiplied by 256 |
| 106 | pub fn OP_256MUL() -> Script { |
nothing calls this directly
no outgoing calls
no test coverage detected