File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ serialize = {major}.{minor}.{patch}
1313parse = contract_version = " (?P<major>\d+)\.(?P<minor>\d+)\._" ;
1414serialize = contract_version = " {major}.{minor}._" ;
1515
16+ [bumpversion:file:raiden/smart_contracts/ChannelManagerContract.sol]
17+ parse = contract_version = " (?P<major>\d+)\.(?P<minor>\d+)\._" ;
18+ serialize = contract_version = " {major}.{minor}._" ;
19+
1620[bumpversion:file:raiden/smart_contracts/EndpointRegistry.sol]
1721parse = contract_version = " (?P<major>\d+)\.(?P<minor>\d+)\._" ;
1822serialize = contract_version = " {major}.{minor}._" ;
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ import "./ChannelManagerLibrary.sol";
88// deployment the logic is moved into a library and this contract will work
99// only as a proxy/state container.
1010contract ChannelManagerContract is Utils {
11+ string constant public contract_version = "0.0._ " ;
12+
1113 using ChannelManagerLibrary for ChannelManagerLibrary.Data;
1214 ChannelManagerLibrary.Data data;
1315
You can’t perform that action at this time.
0 commit comments