1
0

support for multisig functions

This commit is contained in:
thomasv
2013-02-20 13:10:32 +01:00
parent f971c80d58
commit 972ba397d1
4 changed files with 85 additions and 6 deletions

View File

@@ -22,6 +22,12 @@ def print_msg(*args):
sys.stdout.write(" ".join(args) + "\n")
sys.stdout.flush()
def print_json(obj):
import json
s = json.dumps(obj,sort_keys = True, indent = 4)
sys.stdout.write(s + "\n")
sys.stdout.flush()
def check_windows_wallet_migration():
if os.path.exists(os.path.join(os.environ["LOCALAPPDATA"], "Electrum")):