Bridge interfaces version synchronized with the release versioning (#411)

This commit is contained in:
Alexander Kolotov 2020-05-04 11:18:49 +03:00 committed by GitHub
parent a620e47b1c
commit a410f9ccd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ pragma solidity 0.4.24;
contract VersionableBridge {
function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
return (3, 0, 0);
return (4, 1, 0);
}
/* solcov ignore next */