Exemplo n.º 1
0
async def get_node_info(request):
    client = PubKeyClient()
    data = client.fetch_peers()
    return {'is_synced': True, 'peer_count': len(data['data'])}
Exemplo n.º 2
0
async def fetch_peers(request):
    client = PubKeyClient()
    return client.fetch_peers()
Exemplo n.º 3
0
def get():
    client = PubKeyClient()
    data = client.fetch_peers()
    return {'is_synced': True, 'peer_count': len(data['data'])}