Skip to content
On this page

OP_NOP7 ​

DANGER

This page would like some review. If you'd like to contribute, take a look at the source code for this website!

INFO

Opcode number: 182
Byte representation: 0xb6
Short Description: Does nothing.

The OP_NOP7 opcode does nothing.

Examples ​

Example 1 ​

shell
# ASM script
OP_1 OP_NOP7 OP_1 

# Raw script
51b651

# Final stack
1
1

Example 2 ​

shell
# ASM script
OP_1 OP_1 OP_NOP7 OP_ADD

# Raw script
5151b693

# Final stack
2