diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-10-25 20:51:04 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-10-25 20:51:04 -0500 |
commit | 3b0a43a8d41ead56afada3e01c0392965f7f397e (patch) | |
tree | 3ec6290e077b1099f55f44fa6bfc26a1b5958bc4 | |
parent | Merge pull request #6017 (diff) | |
parent | python-rpc: add missing daemon RPC (diff) | |
download | monero-3b0a43a8d41ead56afada3e01c0392965f7f397e.tar.xz |
Merge pull request #6033
da2ffd6 python-rpc: add missing daemon RPC (moneromooo-monero)
-rw-r--r-- | utils/python-rpc/framework/daemon.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/utils/python-rpc/framework/daemon.py b/utils/python-rpc/framework/daemon.py index 9f7805dc8..749d9ed88 100644 --- a/utils/python-rpc/framework/daemon.py +++ b/utils/python-rpc/framework/daemon.py @@ -280,6 +280,32 @@ class Daemon(object): } return self.rpc.send_json_rpc_request(set_bans) + def banned(self, address = ''): + banned = { + 'method': 'banned', + 'params': { + 'address': address + }, + 'jsonrpc': '2.0', + 'id': '0' + } + return self.rpc.send_json_rpc_request(banned) + + def set_bootstrap_daemon(self, address, username = '', password = ''): + set_bootstrap_daemon = { + 'address': address, + 'username': username, + 'password': password, + } + return self.rpc.send_request('/set_bootstrap_daemon', set_bootstrap_daemon) + + def get_public_nodes(self, gray = False, white = True): + get_public_nodes = { + 'gray': gray, + 'white': white, + } + return self.rpc.send_request('/get_public_nodes', get_public_nodes) + def get_transactions(self, txs_hashes = [], decode_as_json = False, prune = False, split = False, client = ""): get_transactions = { 'client': client, |