我正在阅读这个 OpenZeppelin 教程:https ://docs.openzeppelin.com/learn/developing-smart-contracts?pref=truffle并完全按照这些步骤操作。但是,在导入 Auth 合同后编译我的合同时,编译失败,并显示 Identifier not found 或 not unique。
这是我得到的错误:contracts/Box.sol:10:5: DeclarationError: Identifier not found or not unique。验证私人身份验证;^--^
我的目录设置与教程完全相同,其中我在名为 access-control 的目录中有 Auth.sol,但它不起作用。
这是我试图运行的代码:
// contracts/Box.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
// Import Auth from the access-control subdirectory
import "./access-control/Auth.sol";
contract Box {
uint256 private value;
Auth private auth;
event ValueChanged(uint256 newValue);
constructor(Auth _auth) public {
auth = _auth;
}
function store(uint256 newValue) public {
// Require that the caller is registered as an administrator in Auth
require(auth.isAdministrator(msg.sender), "Unauthorized");
value = newValue;
emit ValueChanged(newValue);
}
function retrieve() public view returns (uint256) {
return value;
}
}