You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
225 B

13 years ago
#!/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 )
13 years ago