Chain link AggregatorV2V3Interface 接口错误?
我正在遵循实现链链接的集合V2V3接口的坚固教程。在使用Brownie Compile
命令编译代码的同时,在VSCODE 2上弹出错误:
我对坚固性非常陌生,并且仍在试图弄清楚它的工作原理。
I'm following a Solidity tutorial that implements Chain Link's AggregatorV2V3Interface. An error is popping on VSCode 2 while compiling the code with the brownie compile
command
I'm very new to Solidity and still trying to figure out how that works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 VSCode 编译器更改为
v0.6.6+
并将 FundMe.sol Solidity 版本设置为
pragma Solidity ^0.6.6;
这对我有用
Changing the VSCode compiler to
v0.6.6+
and setting FundMe.sol solidity version to
pragma solidity ^0.6.6;
is what worked for me