mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
12 lines
225 B
Python
Executable file
12 lines
225 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import time, electrum
|
|
|
|
electrum.set_verbosity(False) # default is True
|
|
|
|
network = electrum.Network({'verbose':False})
|
|
network.start(wait=True)
|
|
time.sleep(1)
|
|
electrum.print_json( network.heights )
|
|
|
|
|