You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`... receive errors including "MSBUILD : error MSB3428: Could not load the Visual C++ component "VCBuild.exe".`
143
-
144
-
or
145
-
146
-
`... node_modules\truffle\node_modules\sha3\build\sha3.vcxproj(20,3): error MSB4019: The imported project "C:\Microsoft.Cpp.Default.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.". `
147
-
148
-
When you have installed Visual Studio, make sure you have opened a c++ project once.
149
-
150
-
Then try `npm config set msvs_version 2015 --global` and in addition you can try to install the ms-build tools:
On Windows its simply possible to do a `geth attach`, but on MacOS it seems that you need to provide the actual ipc file. `geth --datadir /media/user/sdcard/chaindata --ipcpath $HOME/.ethereum/geth.ipc console` which is a problem posed here: http://ethereum.stackexchange.com/questions/4472/port-30303-error-in-mist-when-i-run-geth-with-a-different-datadir
159
-
160
-
161
-
### Private Network
162
-
The way the private network is initialized changed in the past months and seems to keep changing. For better information on it, it is advised to directly see the correct instructions on:
Solidity is in active maintenance and things change _all the time_! The code throughout the course was written for the current version (at the time this Readme was written) 0.4.8.
173
-
174
-
Any Solidity Program can be "forced" to use another compiler version (older one) by using as _first line in your program_
175
-
`pragma solidity ^0.4.0;` for version 0.4.0, change it to whatever version you might need.
176
-
177
-
The code here is updated to work with solidity 0.4.15.
178
-
179
-
180
51
## Contact
181
52
If you run into any problems, don't hesitate to contact us on the course-forum at any time. If you use the forum-search function, there is a high chance that you find the answer to your problem already.
console.warn("No web3 detected. Falling back to http://localhost:8545. You should remove this fallback when you deploy live, as it's inherently insecure. Consider switching to Metamask for development. More info here: http://truffleframework.com/tutorials/truffle-and-metamask");
127
+
console.warn("No web3 detected. Falling back to http://localhost:9545. You should remove this fallback when you deploy live, as it's inherently insecure. Consider switching to Metamask for development. More info here: http://truffleframework.com/tutorials/truffle-and-metamask");
128
128
// fallback - use your fallback strategy (local node / hosted node + in-dapp id mgmt / fail)
0 commit comments