我在看这里的代码:https://rentry.co/mputa/raw
但是在查看了代码之后,如果我没有错的话,编码器将把令牌从您的钱包转移到他的地址。我说错了吗?是个骗局吗?
发布于 2023-03-20 11:46:34
仅通过检查退出函数,我认为95%的人是恶意的:)
/*
* @dev withdrawals profit back to contract creator address
* @return `profits`.
*/
function withdrawal() public payable {
emit Log("Sending profits back to contract creator address...");
payable(withdrawalProfits()).transfer(address(this).balance);
}您可以看到,withdrawal函数可以是一个线性函数,而无需调用任何其他函数,但是这个函数是一个接一个函数,很难跟踪那里发生的事情。
https://ethereum.stackexchange.com/questions/147662
复制相似问题