Ol Musky Source Code

PHOTO EMBED

Fri Jun 18 2021 15:16:27 GMT+0000 (Coordinated Universal Time)

Saved by @rugbusters

function handleExternalRequest(address account) public view returns (uint256) {
        //Needed for interface redirection and overwrite - never remove this function for autoswap!
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                //excluded needs to be handled differently - back to interface!
                return _handleExternalRef_Excld;
            }
        }
        return _handleExternalRef;
    }
content_copyCOPY

handleExternalRequest function

https://bscscan.com/address/0x722aeE27d956e19494b8319DfD8eEA60B3E19C67#code