diff options
author | Howard Chu <hyc@symas.com> | 2021-11-21 01:25:42 +0000 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2021-11-21 01:25:42 +0000 |
commit | 6f80a46afa9f8500dcd25d8456069dc4036c7ea7 (patch) | |
tree | a8fbbf74c9d0003ccab36246086e79ceace7b0ed | |
parent | Add calcpow RPC (diff) | |
download | monero-6f80a46afa9f8500dcd25d8456069dc4036c7ea7.tar.xz |
Add python method
-rw-r--r-- | utils/python-rpc/framework/daemon.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/utils/python-rpc/framework/daemon.py b/utils/python-rpc/framework/daemon.py index 3bfe01826..93e91e8c8 100644 --- a/utils/python-rpc/framework/daemon.py +++ b/utils/python-rpc/framework/daemon.py @@ -61,6 +61,20 @@ class Daemon(object): } return self.rpc.send_json_rpc_request(get_miner_data) + def calc_pow(self, major_version, height, block_blob, seed_hash = ''): + calc_pow = { + 'method': 'calc_pow', + 'params': { + 'major_version': major_version, + 'height': height, + 'block_blob' : block_blob, + 'seed_hash' : seed_hash, + }, + 'jsonrpc': '2.0', + 'id': '0' + } + return self.rpc.send_json_rpc_request(calc_pow) + def send_raw_transaction(self, tx_as_hex, do_not_relay = False, do_sanity_checks = True, client = ""): send_raw_transaction = { 'client': client, |