게시글
질문&답변
2019.07.08
truffle migrate --network ganache
아니요! 윈도우 10에서 진행하고 있습니다!
- 0
- 2
- 302
질문&답변
2019.07.01
<트러플 , 컨트랙트 배포 1> 강의 내용 에러
어떻게 해결하셨나요?
- 0
- 3
- 224
질문&답변
2019.05.31
truffle(develop)> migrate 입력 시 오류가 납니다...
해당 강좌에 있는 파일로 받아 다시 실행하여 truffle develop 써서 migrate 해보았지만 똑같은 에러메시지를 출력합니다....
- 0
- 9
- 460
질문&답변
2019.05.30
가나슈 restart
저는 제일 최근거를 설치했습니다. 업그레이드 버전에서 restart가 잘 안되네요..! candy apple로 다시 깔고 해보겠습니다 감사합니다.
- 0
- 2
- 236
질문&답변
2019.05.30
truffle(develop)> migrate 입력 시 오류가 납니다...
다시 입력 시 오류메시지입니다ㅠㅠ
- 0
- 9
- 460
질문&답변
2019.05.30
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
- 460
질문&답변
2019.05.30
truffle(develop)> migrate 입력 시 오류가 납니다...
저 내용이 에러메시지입니다. migrate입력마다 저 메세지가 계속 뜹니다
- 0
- 9
- 460
질문&답변
2019.05.28
truffle(develop)> migrate 입력 시 오류가 납니다...
맨 윗줄에 빨간줄 뜹니다..
- 0
- 9
- 460
질문&답변
2019.05.28
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
- 460