Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Mace contract types public
Browse files Browse the repository at this point in the history
Explicity visibility for consistency
  • Loading branch information
NicholasDotSol committed Mar 25, 2020
1 parent 9878ca5 commit dd39eaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solidity/contracts/system/TBTCSystem.sol
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ contract TBTCSystem is Ownable, ITBTCSystem, DepositLog {
uint256 pausedTimestamp;
uint256 constant pausedDuration = 10 days;

TBTCDepositToken tbtcDepositToken;
IBTCETHPriceFeed priceFeed;
IBondedECDSAKeepVendor keepVendor;
IRelay relay;
TBTCDepositToken public tbtcDepositToken;
IBTCETHPriceFeed public priceFeed;
IBondedECDSAKeepVendor public keepVendor;
IRelay public relay;

// Parameters governed by the TBTCSystem owner
bool private allowNewDeposits = false;
Expand Down

0 comments on commit dd39eaf

Please sign in to comment.