Skip to content

Commit 69149cd

Browse files
author
Arjan Zijderveld
committed
Updated type registries
1 parent 1943a24 commit 69149cd

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

scalecodec/type_registry/acala.json

-1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,5 @@
9393
["end", "Option<BlockNumber>"]
9494
]
9595
}
96-
9796
}
9897
}

scalecodec/type_registry/edgeware.json

+1-8
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,6 @@
110110
["ProposalContents", "Vec<u8>"]
111111
]
112112
},
113-
"Balance2": "Balance",
114-
"DispatchError": {
115-
"type": "struct",
116-
"type_mapping": [
117-
["module", "Option<u8>"],
118-
["error", "u8"]
119-
]
120-
}
113+
"Balance2": "Balance"
121114
}
122115
}

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
# Python 3 only projects can skip this import
1515
from io import open
1616

17-
if environ.get('CI_COMMIT_TAG'):
17+
18+
if environ.get('TRAVIS_TAG'):
19+
version = environ['TRAVIS_TAG']
20+
elif environ.get('CI_COMMIT_TAG'):
1821
version = environ['CI_COMMIT_TAG']
1922
else:
2023
raise ValueError('Missing commit tag, can\'t set version')

0 commit comments

Comments
 (0)