AHN DAHEE
@deg98101384
Reviews Written
-
Average Rating
-
Posts
Q&A
truffle migrate --network ganache
์๋์! ์๋์ฐ 10์์ ์งํํ๊ณ ์์ต๋๋ค!
- 0
- 2
- 358
Q&A
<ํธ๋ฌํ , ์ปจํธ๋ํธ ๋ฐฐํฌ 1> ๊ฐ์ ๋ด์ฉ ์๋ฌ
์ด๋ป๊ฒ ํด๊ฒฐํ์ จ๋์?
- 0
- 3
- 302
Q&A
truffle(develop)> migrate ์ ๋ ฅ ์ ์ค๋ฅ๊ฐ ๋ฉ๋๋ค...
ํด๋น ๊ฐ์ข์ ์๋ ํ์ผ๋ก ๋ฐ์ ๋ค์ ์คํํ์ฌ truffle develop ์จ์ migrate ํด๋ณด์์ง๋ง ๋๊ฐ์ ์๋ฌ๋ฉ์์ง๋ฅผ ์ถ๋ ฅํฉ๋๋ค....
- 0
- 9
- 619
Q&A
๊ฐ๋์ restart
์ ๋ ์ ์ผ ์ต๊ทผ๊ฑฐ๋ฅผ ์ค์นํ์ต๋๋ค. ์ ๊ทธ๋ ์ด๋ ๋ฒ์ ์์ restart๊ฐ ์ ์๋๋ค์..! candy apple๋ก ๋ค์ ๊น๊ณ ํด๋ณด๊ฒ ์ต๋๋ค ๊ฐ์ฌํฉ๋๋ค.
- 0
- 2
- 291
Q&A
truffle(develop)> migrate ์ ๋ ฅ ์ ์ค๋ฅ๊ฐ ๋ฉ๋๋ค...
๋ค์ ์ ๋ ฅ ์ ์ค๋ฅ๋ฉ์์ง์ ๋๋คใ ใ
- 0
- 9
- 619
Q&A
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
- 619
Q&A
truffle(develop)> migrate ์ ๋ ฅ ์ ์ค๋ฅ๊ฐ ๋ฉ๋๋ค...
์ ๋ด์ฉ์ด ์๋ฌ๋ฉ์์ง์ ๋๋ค. migrate์ ๋ ฅ๋ง๋ค ์ ๋ฉ์ธ์ง๊ฐ ๊ณ์ ๋น๋๋ค
- 0
- 9
- 619
Q&A
truffle(develop)> migrate ์ ๋ ฅ ์ ์ค๋ฅ๊ฐ ๋ฉ๋๋ค...
๋งจ ์์ค์ ๋นจ๊ฐ์ค ๋น๋๋ค..
- 0
- 9
- 619
Q&A
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
- 619




