Skip to content
On this page

OP_NOP10 ​

INFO

Opcode number: 185
Byte representation: 0xb9
Short Description: Does nothing.

DANGER

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

The OP_NOP10 opcode does nothing. It does not change the state of the stack or any of the script's execution conditions.

Examples ​

Example 1 ​

shell
# ASM script
OP_1 OP_NOP10 OP_1 

# Raw script
51b851

# Final stack
1
1

Example 2 ​

shell
# ASM script
OP_1 OP_1 OP_NOP10 OP_ADD

# Raw script
5151b893

# Final stack
2