inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

AHN DAHEE님의 게시글

AHN DAHEE AHN DAHEE

@deg98101384

수강평 작성수
-
평균평점
-

게시글 9

질문&답변

truffle migrate --network ganache

아니요! 윈도우 10에서 진행하고 있습니다!

좋아요수
0
댓글수
2
조회수
375

질문&답변

truffle(develop)> migrate 입력 시 오류가 납니다...

해당 강좌에 있는 파일로 받아 다시 실행하여 truffle develop 써서 migrate 해보았지만 똑같은 에러메시지를 출력합니다....

좋아요수
0
댓글수
9
조회수
721

질문&답변

가나슈 restart

저는 제일 최근거를 설치했습니다. 업그레이드 버전에서 restart가 잘 안되네요..! candy apple로 다시 깔고 해보겠습니다 감사합니다.

좋아요수
0
댓글수
2
조회수
312

질문&답변

truffle(develop)> migrate 입력 시 오류가 납니다...

TypeError: Contracts.compile is not a function at Object.run (C:\Users\holov\AppData\Roaming\npm\node_modules\truffle\build\webpack:\packages\truffle-core\lib\commands\migrate.js:88:1) at Command.run (C:\Users\holov\AppData\Roaming\npm\node_modules\truffle\build\webpack:\packages\truffle-core\lib\command.js:101:1) at Console.interpret (C:\Users\holov\AppData\Roaming\npm\node_modules\truffle\build\webpack:\packages\truffle-core\lib\console.js:141:1) at ReplManager.interpret (C:\Users\holov\AppData\Roaming\npm\node_modules\truffle\build\webpack:\packages\truffle-core\lib\repl.js:119:1) at bound (domain.js:415:14) at REPLServer.runBound [as eval] (domain.js:428:12) at REPLServer.onLine (repl.js:700:10) at REPLServer.emit (events.js:200:13) at REPLServer.EventEmitter.emit (domain.js:471:20) at REPLServer.Interface._onLine (readline.js:314:10) at REPLServer.Interface._line (readline.js:691:8) at REPLServer.Interface._ttyWrite (readline.js:1011:14) at REPLServer.self._ttyWrite (repl.js:777:7) at ReadStream.onkeypress (readline.js:189:10) at ReadStream.emit (events.js:200:13) at ReadStream.EventEmitter.emit (domain.js:471:20) at emitKeys (internal/readline.js:424:14) at emitKeys.next ( ) at ReadStream.onData (readline.js:1145:36) at ReadStream.emit (events.js:200:13) at ReadStream.EventEmitter.emit (domain.js:471:20) at addChunk (_stream_readable.js:290:12)

좋아요수
0
댓글수
9
조회수
721

질문&답변

truffle(develop)> migrate 입력 시 오류가 납니다...

pragma solidity ^0.4.24; contract MyContract { struct Student { string studentName; string gender; uint age; } mapping ( uint256 => Student) studentInfo; function setStudentInfo ( uint _studentId, string _name, string _gender, uint _age) public { Student storage student = studentInfo[_studentId]; student.studentName = _name; student.gender = _gender; student.age = _age; } function getStudentInfo ( uint256 _studentId) public view returns ( string , string , uint ) { return (studentInfo[_studentId].studentName, studentInfo[_studentId].gender, studentInfo[_studentId].age); } }

좋아요수
0
댓글수
9
조회수
721