체인의정석

DocstringParsingError: Documented parameter "" not found in the parameter list of the function. 오류 해결 본문

블록체인/Ethers & web3

DocstringParsingError: Documented parameter "" not found in the parameter list of the function. 오류 해결

체인의정석 2022. 6. 22. 14:36
728x90
반응형

DocstringParsingError: Documented parameter "registryAddress" not found in the parameter list of the function.

DocstringParsingError: Documented parameter "tokenAddress" not found in the parameter list of the function.

 

위의 에러가 나서 어떤 내용인지 살펴보니

    /**
     * @dev Initialize a WyvernExchange instance
     * @param registryAddress Address of the registry instance which this Exchange instance will use
     * @param tokenAddress Address of the token used for protocol fees
     */

이런식으로 주석 처리가 되어 있는데 해당 파라미터가 빠질 시 나는 에러이다.

기존 프로젝트를 포크하고 불필요한 부분을 제거할 때는 이와 같은 주석에서 불필요한 부분은 모두 제거하고 써야한다.

    /**
     * @dev Initialize a WyvernExchange instance
     */

이렇게 불필요한 주석을 제거하고 나면 해당 오류는 사라진다.

728x90
반응형
Comments