rename the field as per the original issue

This commit is contained in:
Alexander Kolotov 2018-02-28 02:00:08 +03:00
parent 2e3bd4ef32
commit 544873fd50
1 changed files with 2 additions and 2 deletions

View File

@ -199,10 +199,10 @@ library MessageTest {
/// and ForeignBridge addresses and request block deployed from the contracts
/// in order to generate correct database file.
contract BridgeDeploymentAddressStorage {
uint256 public blockDeployed;
uint256 public deployedAtBlock;
function BridgeDeploymentAddressStorage() public {
blockDeployed = block.number;
deployedAtBlock = block.number;
}
}