Replace deprecated method in bancor registry

This commit is contained in:
nolash
2020-12-11 12:51:37 +01:00
parent e031fdeaf2
commit 6b2a9286b2
2 changed files with 20 additions and 2 deletions

13
util/mergeabis.py Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python3
import sys
import json
merged = []
for a in sys.argv[1:]:
f = open(a, 'r')
j = json.load(f)
f.close()
merged += j
print(json.dumps(merged))