簡體   English   中英

錯誤:返回錯誤:處理事務時出現 VM 異常:使用 New 創建時恢復

[英]Error: Returned error: VM Exception while processing transaction: revert when creating with New

我正在使用 Drizzle,每當我在此合同上調用createInvestorToken時,我都會收到Error: Returned error: VM Exception while processing transaction: revert 不知道如何調試這個。 它在測試中成功,但在其他情況下不會成功。

如果我刪除allTokens.push(new InvestmentToken(_name,_symbol,initalSupply,_cost)); 有用。

// SPDX-License-Identifier: MIT
pragma solidity >=0.4.21 <0.7.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract InvestmentToken is ERC20{

    string public name;
    string public symbol;
    uint256 public decimals = 0;
    uint256 public INITIAL_SUPPLY;

    uint256 public cost;
    address public parent;

    constructor(string memory _name, string memory _symbol, uint256 initalSupply,  uint256 _cost) public {
        name = _name;
        symbol = _symbol;
        INITIAL_SUPPLY = initalSupply;
        cost=_cost;
        parent = msg.sender;
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function buyToken(address receiver, uint256 amount) public {
        if (msg.sender != parent) {
            revert("You may only buy through the DPAC token");
        }

        uint256 tokensLeft = balanceOf(msg.sender);
        if (tokensLeft >= amount/cost){
            _transfer(msg.sender,receiver, amount/cost);
        } else {
            revert("There are no more tokens");
        }
    }

    
}


contract TheParentToken {
    string public name = "DPAC_Token";
    string public symbol = "DPAC";
    uint256 public decimals = 0;
    uint256 public INITIAL_SUPPLY = 10000;

    uint256 public numberOfTokens = 0;

    mapping(address => bool) public tokenWhiteList;
    InvestmentToken[] public allTokens;
    address public administrator;

    constructor() public {
        administrator = msg.sender;
        allTokens.push(new InvestmentToken("A","B",1000,1));
        allTokens.push(new InvestmentToken("B","C",1000,1));
        numberOfTokens = allTokens.length;
    }

    function createInvestorToken(string memory _name, string memory _symbol, uint256 initalSupply,  uint256 _cost) public {
        allTokens.push(new InvestmentToken(_name,_symbol,initalSupply,_cost));
        numberOfTokens = allTokens.length;
    }

    function addTokenToWhiteList(address newToken) public {
        if(msg.sender != administrator){
            revert("Not Admin");
        }
        tokenWhiteList[newToken]=true;
    }

    function removeTokenFromWhiteList(address newToken) public {
        if(msg.sender != administrator){
            revert("Not Admin");
        }
        tokenWhiteList[newToken]=false;
    }

}

在這種情況下,令牌達到了氣體限制,並且錯誤沒有顯示為氣體問題。

我認為因為它正在創建一個令牌,所以錯誤被抑制了。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM