From a7399631d89db8e786a29a6deca5f09b1bf1ed3b Mon Sep 17 00:00:00 2001 From: Thrilok kumar Date: Sun, 28 Mar 2021 02:12:29 +0530 Subject: [PATCH] Update TokenDelegator.sol --- contracts/TokenDelegator.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/TokenDelegator.sol b/contracts/TokenDelegator.sol index 5efad45..5061b9c 100644 --- a/contracts/TokenDelegator.sol +++ b/contracts/TokenDelegator.sol @@ -37,7 +37,7 @@ contract TokenDelegator is TokenDelegatorStorage, TokenEvents { */ function _setImplementation(address implementation_) external isMaster { require(implementation_ != address(0), "TokenDelegator::_setImplementation: invalid implementation address"); - require(block.timestamp >=changeImplementationAfter, "TokenDelegator::_setImplementation: can change implementation changeImplementationAfter time only"); + require(block.timestamp >= changeImplementationAfter, "TokenDelegator::_setImplementation: can change implementation changeImplementationAfter time only"); address oldImplementation = implementation; implementation = implementation_; @@ -78,4 +78,4 @@ contract TokenDelegator is TokenDelegatorStorage, TokenEvents { default { return(free_mem_ptr, returndatasize()) } } } -} \ No newline at end of file +}