Getting error "creation of HelloWorld errored: TypeError: Cannot convert undefined or null to object"

Getting error "creation of HelloWorld errored: TypeError: Cannot convert undefined or null to object"

Solidity 的新手,刚刚尝试了 Remix 中的第一个 HelloWorld 智能合约 IDE 并在尝试部署智能合约时偶然发现了这个错误。

creation of HelloWorld pending...
creation of HelloWorld errored: TypeError: Cannot convert undefined or null to object

我的代码:

pragma solidity ^0.5.16;

contract HelloWorld {
    string public greet = "Hello World!";
}

编译器版本设置为0.5.16+commit.9c3226ce

不确定我遗漏了什么,因此非常感谢所有帮助和指导。

我认为问题出在您的浏览器上。重新加载混音并将代码粘贴回去。代码本身没有问题。