일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- rust 기초
- 러스트 기초
- 스마트컨트렉트 함수이름 중복 호출
- multicall
- ethers typescript
- 스마트컨트렉트프록시
- nestjs 튜토리얼
- ethers
- 스마트컨트렉트 예약어 함수이름 중복
- ethers type
- chainlink 설명
- Vue
- 컨트렉트 배포 자동화
- 스마트 컨트렉트 함수이름 중복
- 체인의정석
- 스마트컨트렉트테스트
- 깃허브명령어
- nest.js설명
- 프록시배포구조
- ethers websocket
- vue기초
- 머신러닝기초
- Vue.js
- 러스트 기초 학습
- git rebase
- 컨트렉트 동일한 함수이름 호출
- 러스트기초
- ambiguous function description
- ethers v6
- SBT표준
Archives
- Today
- Total
체인의정석
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:36728x90
반응형
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
반응형
'블록체인 > Ethers & web3' 카테고리의 다른 글
hardhat의 chainID를 수정하여 메타마스크와 연결하기, 메타마스크와 hardhat 테스트 네트워크 연결하는 법 (0) | 2022.06.30 |
---|---|
주소가 CA인지 체크하는 방법 (0) | 2022.06.24 |
상용 서비스에 들어가는 Smart Contract 테스트 코드 작성 팁 (0) | 2022.05.30 |
ethers+hardhat) 스마트컨트렉트에서 uint256 배열이 리턴되는 경우의 테스트 코드 (0) | 2022.05.25 |
Truffle에서 migration 사용하기 (0) | 2022.05.19 |
Comments