diff --git a/404.html b/404.html index 33b845957..25d7be6e9 100644 --- a/404.html +++ b/404.html @@ -4,7 +4,7 @@
To abort, send one of the following:
-POST /abort_blocks
{
"starting_block_hash": BLOCK_HASH
}
JSON-RPC
{
"jsonrpc": "2.0",
"id": "1",
"method": "devnet_abortBlocks",
"params": {
"starting_block_hash": BLOCK_HASH
}
}
POST /abort_blocks
{
"starting_block_id": BLOCK_ID
}
JSON-RPC
{
"jsonrpc": "2.0",
"id": "1",
"method": "devnet_abortBlocks",
"params": {
"starting_block_id": BLOCK_ID
}
}
Response:
-{
"aborted": [BLOCK_HASH_0, BLOCK_HASH_1, ...]
}
{
"aborted": [BLOCK_HASH_0, BLOCK_HASH_1, ...]
}
Note: When aborting block with tag pending
, block is mined and aborted as latest.