mirror of
https://github.com/Qortal/AT.git
synced 2025-01-30 02:42:14 +00:00
Minor JavaDoc fix-up, in particular the wrong explanation for SLP_VAL OpCode
This commit is contained in:
parent
ae23aac716
commit
836ef215d4
@ -561,7 +561,7 @@ public enum OpCode {
|
|||||||
/**
|
/**
|
||||||
* <b>SL</b>ee<b>P</b> until <b>DAT</b>a<br>
|
* <b>SL</b>ee<b>P</b> until <b>DAT</b>a<br>
|
||||||
* <code>0x25 addr</code><br>
|
* <code>0x25 addr</code><br>
|
||||||
* <code>sleep until $addr, then carry on from current PC</code><br>
|
* Sleep until <code>$addr</code>, then carry on from current <code>PC</code><br>
|
||||||
* Note: The value from <code>$addr</code> is considered to be a block height.
|
* Note: The value from <code>$addr</code> is considered to be a block height.
|
||||||
*/
|
*/
|
||||||
SLP_DAT(0x25, OpCodeParam.BLOCK_HEIGHT) {
|
SLP_DAT(0x25, OpCodeParam.BLOCK_HEIGHT) {
|
||||||
@ -634,7 +634,7 @@ public enum OpCode {
|
|||||||
/**
|
/**
|
||||||
* <b>SL</b>ee<b>P</b> <b>IM</b>me<b>D</b>iately<br>
|
* <b>SL</b>ee<b>P</b> <b>IM</b>me<b>D</b>iately<br>
|
||||||
* <code>0x2a</code><br>
|
* <code>0x2a</code><br>
|
||||||
* <code>sleep until next block, then carry on from current PC</code>
|
* Sleep until next block, then carry on from current <code>PC</code>
|
||||||
*/
|
*/
|
||||||
SLP_IMD(0x2a) {
|
SLP_IMD(0x2a) {
|
||||||
@Override
|
@Override
|
||||||
@ -659,8 +659,7 @@ public enum OpCode {
|
|||||||
/**
|
/**
|
||||||
* <b>SL</b>ee<b>P</b> for <b>VAL</b>ue blocks<br>
|
* <b>SL</b>ee<b>P</b> for <b>VAL</b>ue blocks<br>
|
||||||
* <code>0x2c value</code><br>
|
* <code>0x2c value</code><br>
|
||||||
* <code>sleep until $addr, then carry on from current PC</code><br>
|
* Sleep for <code>value</code> blocks, then carry on from current <code>PC</code>
|
||||||
* Note: The value from <code>$addr</code> is considered to be a block height.
|
|
||||||
*/
|
*/
|
||||||
SLP_VAL(0x2c, OpCodeParam.VALUE) {
|
SLP_VAL(0x2c, OpCodeParam.VALUE) {
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user