mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
5 lines
168 B
Python
Executable file
5 lines
168 B
Python
Executable file
#!/usr/bin/env python
|
|
import util, json
|
|
peers = util.get_peers()
|
|
results = util.send_request(peers, 'blockchain.estimatefee', [2])
|
|
print(json.dumps(results, indent=4))
|