Merge pull request #6033

da2ffd6 python-rpc: add missing daemon RPC (moneromooo-monero)
This commit is contained in:
luigi1111 2019-10-25 20:51:04 -05:00
commit 3b0a43a8d4
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 26 additions and 0 deletions

View File

@ -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,