关于solidity开发时遇到的VM Exception while processing transaction: invalid opcode问题,我的代码如下:
pragma solidity ^0.4.16;
contract modifierTest{
uint a=0;
address owner;
constructor() public{
owner = msg.sender;
}
modifier onlyOwner{
require(msg.sender == owner);
_;
}
function changeIt(uint _a)public onlyOwner{
a = _a;
}
}
发现在运行构造函数处提示VM Exception while processing transaction: invalid opcode错误。
改正方法如下:文章来源:https://www.toymoban.com/news/detail-620631.html
pragma solidity ^0.4.24;//改成了24版本,同时也要改编译器的版本
contract modifierTest{
uint a=0;
address owner;
constructor() public{
owner = msg.sender;
}
modifier onlyOwner{
require(msg.sender == owner);
_;
}
function changeIt(uint _a)public onlyOwner{
a = _a;
}
}
然后将
修改后编译成功,运行不再报错。在改回原来的节点环境也能运行了。文章来源地址https://www.toymoban.com/news/detail-620631.html
到了这里,关于solidity报错处理:VM Exception while processing transaction: invalid opcode的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!