Skip to content

Commit

Permalink
contract name change
Browse files Browse the repository at this point in the history
  • Loading branch information
mak2296 committed Sep 17, 2020
1 parent bf5ce7d commit 69b9a80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contracts/Protection/AuctionProtection.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface InitializeInterface {
) external;
}

contract AuctionRegistery is ProxyOwnable,ProtectionStorage, AuctionRegisteryContracts {
contract ProtectionRegistery is ProxyOwnable,ProtectionStorage, AuctionRegisteryContracts {


function updateRegistery(address _address)
Expand Down Expand Up @@ -62,7 +62,7 @@ contract AuctionRegistery is ProxyOwnable,ProtectionStorage, AuctionRegisteryCon
}


contract Utils is SafeMath, AuctionRegistery {
contract Utils is SafeMath, ProtectionRegistery {


modifier allowedAddressOnly(address _which) {
Expand Down
4 changes: 2 additions & 2 deletions contracts/TokenVault/TokenVault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface InitializeInterface {
) external;
}

contract AuctionRegistery is ProxyOwnable,TokenVaultStorage, AuctionRegisteryContracts {
contract TokenRegistery is ProxyOwnable,TokenVaultStorage, AuctionRegisteryContracts {


function updateRegistery(address _address)
Expand Down Expand Up @@ -54,7 +54,7 @@ contract AuctionRegistery is ProxyOwnable,TokenVaultStorage, AuctionRegisteryCon
}
}

contract TokenSpenders is AuctionRegistery,SafeMath {
contract TokenSpenders is TokenRegistery,SafeMath {


modifier onlySpender() {
Expand Down

0 comments on commit 69b9a80

Please sign in to comment.