diff options
author | SChernykh <sergey.v.chernykh@gmail.com> | 2021-09-21 20:28:11 +0200 |
---|---|---|
committer | SChernykh <sergey.v.chernykh@gmail.com> | 2021-09-21 20:28:11 +0200 |
commit | d51e3f21f778d6fc3ae6fed1d47503e0d41df522 (patch) | |
tree | ebc97f56e2818ae6f0313fbbc3bc1fdb5294552b /utils | |
parent | Merge pull request #7906 (diff) | |
download | monero-d51e3f21f778d6fc3ae6fed1d47503e0d41df522.tar.xz |
RPC and ZeroMQ APIs to support p2pool
Adds the following:
- "get_miner_data" to RPC API
- "json-miner-data" to ZeroMQ subscriber contexts
Both provide the necessary data to create a custom block template. They are used by p2pool.
Data provided:
- major fork version
- current height
- previous block id
- RandomX seed hash
- network difficulty
- median block weight
- coins mined by the network so far
- mineable mempool transactions
Diffstat (limited to '')
-rw-r--r-- | utils/python-rpc/framework/daemon.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/python-rpc/framework/daemon.py b/utils/python-rpc/framework/daemon.py index 435bc93f8..3bfe01826 100644 --- a/utils/python-rpc/framework/daemon.py +++ b/utils/python-rpc/framework/daemon.py @@ -53,6 +53,14 @@ class Daemon(object): return self.rpc.send_json_rpc_request(getblocktemplate) get_block_template = getblocktemplate + def get_miner_data(self): + get_miner_data = { + 'method': 'get_miner_data', + 'jsonrpc': '2.0', + 'id': '0' + } + return self.rpc.send_json_rpc_request(get_miner_data) + def send_raw_transaction(self, tx_as_hex, do_not_relay = False, do_sanity_checks = True, client = ""): send_raw_transaction = { 'client': client, |