mirror of
https://github.com/monero-project/monero-site.git
synced 2024-12-13 20:06:35 +02:00
Merge branch 'update_submit_block' into 'master'
update submit_block rpc documentation with example See merge request monero-project/monero-site!887
This commit is contained in:
commit
0790c8a770
@ -1,4 +1,4 @@
|
||||
{% assign version = '2.1.0' | split: '.' %}
|
||||
{% assign version = '2.2.0' | split: '.' %}
|
||||
{% include disclaimer.html translated="false" version=page.version %}
|
||||
## Introduction
|
||||
|
||||
@ -204,12 +204,27 @@ Alias: *submitblock*.
|
||||
|
||||
Inputs:
|
||||
|
||||
* Block blob data - string
|
||||
* Block blob data - array of strings; list of block blobs which have been mined. See [get_block_template](#get_block_template) to get a blob on which to mine.
|
||||
|
||||
Outputs:
|
||||
|
||||
* *status* - string; Block submit status.
|
||||
|
||||
In this example, a block blob which has not been mined is submitted:
|
||||
|
||||
```
|
||||
$ curl -X POST http://127.0.0.1:18081/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"submit_block","params":["0707e6bdfedc053771512f1bc27c62731ae9e8f2443db64ce742f4e57f5cf8d393de28551e441a0000000002fb830a01ffbf830a018cfe88bee283060274c0aae2ef5730e680308d9c00b6da59187ad0352efe3c71d36eeeb28782f29f2501bd56b952c3ddc3e350c2631d3a5086cac172c56893831228b17de296ff4669de020200000000"]' -H 'Content-Type: application/json'
|
||||
|
||||
{
|
||||
"id": "0",
|
||||
"jsonrpc": "2.0",
|
||||
"error": {
|
||||
"code": -7,
|
||||
"message": "Block not accepted"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
### **get_last_block_header**
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{% assign version = '2.1.0' | split: '.' %}
|
||||
{% assign version = '2.2.0' | split: '.' %}
|
||||
{% include disclaimer.html translated="true" version=page.version %}
|
||||
## Introduction
|
||||
|
||||
@ -204,12 +204,27 @@ Alias: *submitblock*.
|
||||
|
||||
Inputs:
|
||||
|
||||
* Block blob data - string
|
||||
* Block blob data - array of strings; list of block blobs which have been mined. See [get_block_template](#get_block_template) to get a blob on which to mine.
|
||||
|
||||
Outputs:
|
||||
|
||||
* *status* - string; Block submit status.
|
||||
|
||||
In this example, a block blob which has not been mined is submitted:
|
||||
|
||||
```
|
||||
$ curl -X POST http://127.0.0.1:18081/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"submit_block","params":["0707e6bdfedc053771512f1bc27c62731ae9e8f2443db64ce742f4e57f5cf8d393de28551e441a0000000002fb830a01ffbf830a018cfe88bee283060274c0aae2ef5730e680308d9c00b6da59187ad0352efe3c71d36eeeb28782f29f2501bd56b952c3ddc3e350c2631d3a5086cac172c56893831228b17de296ff4669de020200000000"]' -H 'Content-Type: application/json'
|
||||
|
||||
{
|
||||
"id": "0",
|
||||
"jsonrpc": "2.0",
|
||||
"error": {
|
||||
"code": -7,
|
||||
"message": "Block not accepted"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
### **get_last_block_header**
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{% assign version = '2.1.0' | split: '.' %}
|
||||
{% assign version = '2.2.0' | split: '.' %}
|
||||
{% include disclaimer.html translated="false" version=page.version %}
|
||||
## Introduction
|
||||
|
||||
@ -204,12 +204,27 @@ Alias: *submitblock*.
|
||||
|
||||
Inputs:
|
||||
|
||||
* Block blob data - string
|
||||
* Block blob data - array of strings; list of block blobs which have been mined. See [get_block_template](#get_block_template) to get a blob on which to mine.
|
||||
|
||||
Outputs:
|
||||
|
||||
* *status* - string; Block submit status.
|
||||
|
||||
In this example, a block blob which has not been mined is submitted:
|
||||
|
||||
```
|
||||
$ curl -X POST http://127.0.0.1:18081/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"submit_block","params":["0707e6bdfedc053771512f1bc27c62731ae9e8f2443db64ce742f4e57f5cf8d393de28551e441a0000000002fb830a01ffbf830a018cfe88bee283060274c0aae2ef5730e680308d9c00b6da59187ad0352efe3c71d36eeeb28782f29f2501bd56b952c3ddc3e350c2631d3a5086cac172c56893831228b17de296ff4669de020200000000"]' -H 'Content-Type: application/json'
|
||||
|
||||
{
|
||||
"id": "0",
|
||||
"jsonrpc": "2.0",
|
||||
"error": {
|
||||
"code": -7,
|
||||
"message": "Block not accepted"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
### **get_last_block_header**
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{% assign version = '2.1.0' | split: '.' %}
|
||||
{% assign version = '2.2.0' | split: '.' %}
|
||||
{% include disclaimer.html translated="false" version=page.version %}
|
||||
## Introduction
|
||||
|
||||
@ -204,12 +204,27 @@ Alias: *submitblock*.
|
||||
|
||||
Inputs:
|
||||
|
||||
* Block blob data - string
|
||||
* Block blob data - array of strings; list of block blobs which have been mined. See [get_block_template](#get_block_template) to get a blob on which to mine.
|
||||
|
||||
Outputs:
|
||||
|
||||
* *status* - string; Block submit status.
|
||||
|
||||
In this example, a block blob which has not been mined is submitted:
|
||||
|
||||
```
|
||||
$ curl -X POST http://127.0.0.1:18081/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"submit_block","params":["0707e6bdfedc053771512f1bc27c62731ae9e8f2443db64ce742f4e57f5cf8d393de28551e441a0000000002fb830a01ffbf830a018cfe88bee283060274c0aae2ef5730e680308d9c00b6da59187ad0352efe3c71d36eeeb28782f29f2501bd56b952c3ddc3e350c2631d3a5086cac172c56893831228b17de296ff4669de020200000000"]' -H 'Content-Type: application/json'
|
||||
|
||||
{
|
||||
"id": "0",
|
||||
"jsonrpc": "2.0",
|
||||
"error": {
|
||||
"code": -7,
|
||||
"message": "Block not accepted"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
### **get_last_block_header**
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{% assign version = '2.1.0' | split: '.' %}
|
||||
{% assign version = '2.2.0' | split: '.' %}
|
||||
{% include disclaimer.html translated="false" version=page.version %}
|
||||
## Introduction
|
||||
|
||||
@ -204,12 +204,27 @@ Alias: *submitblock*.
|
||||
|
||||
Inputs:
|
||||
|
||||
* Block blob data - string
|
||||
* Block blob data - array of strings; list of block blobs which have been mined. See [get_block_template](#get_block_template) to get a blob on which to mine.
|
||||
|
||||
Outputs:
|
||||
|
||||
* *status* - string; Block submit status.
|
||||
|
||||
In this example, a block blob which has not been mined is submitted:
|
||||
|
||||
```
|
||||
$ curl -X POST http://127.0.0.1:18081/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"submit_block","params":["0707e6bdfedc053771512f1bc27c62731ae9e8f2443db64ce742f4e57f5cf8d393de28551e441a0000000002fb830a01ffbf830a018cfe88bee283060274c0aae2ef5730e680308d9c00b6da59187ad0352efe3c71d36eeeb28782f29f2501bd56b952c3ddc3e350c2631d3a5086cac172c56893831228b17de296ff4669de020200000000"]' -H 'Content-Type: application/json'
|
||||
|
||||
{
|
||||
"id": "0",
|
||||
"jsonrpc": "2.0",
|
||||
"error": {
|
||||
"code": -7,
|
||||
"message": "Block not accepted"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
### **get_last_block_header**
|
||||
|
||||
|
@ -4,7 +4,7 @@ title: "Daemon RPC documentation"
|
||||
permalink: /resources/developer-guides/daemon-rpc.html
|
||||
mainVersion:
|
||||
- "2"
|
||||
- "1"
|
||||
- "2"
|
||||
- "0"
|
||||
---
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user