false 在 REMIX ide 中的值字段上添加 1eth 后,已挖掘交易但执行失败

false Transaction mined but execution failed after adding 1eth on the value's field in REMIX ide

我收到此错误“已开采假交易但执行失败”。

address public admin;

    constructor() {
       admin = msg.sender;
    }

   //data strcutures 
   mapping (address => uint) balance;
   mapping (address => bool) AccountActive;

  function deposit() public payable {
     balance[msg.sender] += msg.value;
      
  }

当您部署合约时,发送 ETH 值时,constructor 需要使用 payable 修饰符 - 就像任何其他接收 ETH 的函数一样。

constructor() payable {
    admin = msg.sender;
}