Puts the top 4 items onto the top of the alt stack. Removes them from the main stack.
()
| 55 | |
| 56 | /// Puts the top 4 items onto the top of the alt stack. Removes them from the main stack. |
| 57 | pub fn OP_4TOALTSTACK() -> Script { |
| 58 | script! { |
| 59 | OP_TOALTSTACK OP_TOALTSTACK OP_TOALTSTACK OP_TOALTSTACK |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | /// Puts the top 4 items from the altstack onto the top of the main stack. Removes them from the alt stack. |
| 64 | pub fn OP_4FROMALTSTACK() -> Script { |
nothing calls this directly
no outgoing calls
no test coverage detected