Solidity

編譯時的 Solidity 錯誤消息(DeclarationError: Identifier not found or not unique. using Address for address;)

  • January 24, 2020

我正在嘗試為基於已部署令牌的 openzeppelin 庫中的眾籌合約(定時且有限額)編譯程式碼。但是,在 remix 編譯期間,我收到如下語法錯誤

browser/TestCrowdsale.sol:330:11: DeclarationError: Identifier not found or not unique。

使用地址作為地址;

^—–^

我嘗試使用最新的編譯器 0.6.1 和 0.5.0 仍然是相同的結果。

有人可以建議程式碼有什麼問題嗎

另外,我應該在哪裡將已部署合約的地址傳遞給眾籌合約?

程式碼:https ://paste2.org/ULhxpLAv

快速查看它,我注意到您沒有導入庫地址,這可能是您using Address as address不起作用的原因。希望這可以幫助。

引用自:https://ethereum.stackexchange.com/questions/79306