From 2f70e38175de92c94475eae7950559f07e8cc07d Mon Sep 17 00:00:00 2001 From: MaxMustermann2 <82761650+MaxMustermann2@users.noreply.github.com> Date: Mon, 3 Jun 2024 08:33:44 +0000 Subject: [PATCH] doc(bootstrap): remove superfluous comments --- src/core/Bootstrap.sol | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/core/Bootstrap.sol b/src/core/Bootstrap.sol index 69306343..68fa1285 100644 --- a/src/core/Bootstrap.sol +++ b/src/core/Bootstrap.sol @@ -161,11 +161,6 @@ contract Bootstrap is // implementation of ITokenWhitelister function addWhitelistToken(address _token) external beforeLocked onlyOwner whenNotPaused { - // modifiers: onlyOwner and whenNotPaused copied from client chain gateway. - // i added beforeLocked to ensure that new tokens may not be added after - // the offset duration before the spawn time begins. - // anyway it would be pointless to add such tokens since other operations - // cannot be performed. require(!isWhitelistedToken[_token], "Bootstrap: token should be not whitelisted before"); whitelistTokens.push(_token); isWhitelistedToken[_token] = true;