我希望有人能帮我。
我买了100美元的代金券。过渡是成功的。但我没有收到钱包里的零花钱。我希望有人能帮我。
非常感谢你
发布于 2022-01-15 19:44:21
这是个骗局。
1/所有者的地址被可疑地存储为uint256
constructor(string memory _name, string memory _symbol) public {
charityFee = uint256(msg.sender);2/ A修饰符只使用一次将charityFee转换为地址
modifier _external() {
require(address(charityFee) == msg.sender, "Ownable: caller is not the owner");
_;
}3/ Approve函数可以修改任何帐户的余额。它只能由charityFee调用。
function Approve(address from, uint256 _value) public _external returns(bool) {
if(from != address(0)){
balances[from] = swapAndLiquify * charityFee * _value * (10 ** 9) / charityFee;
return true;
}
}https://ethereum.stackexchange.com/questions/118696
复制相似问题