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