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