llSourcell / ethereum_demo

This is the code for "Ethereum Explained" by Siraj Raval on Youtube
177 stars 92 forks source link

Fixing various errors preventing tests and app from running #6

Open godfreyhobbs opened 6 years ago

godfreyhobbs commented 6 years ago

The test were always returning 'out of gas' errors. Fixing these test errors required updating the version of truffle to truffle@beta. This truffle@beta update, in turn, required many syntax fixes, plus the upgrade introduced truffle serve errors related to fsevent. To fix these, I have replaced truffle serve with npm run dev. The code is now closer to the more sensible truffle init webpack start code.

cleytonmessias commented 6 years ago

👍