Luke Schoen
Luke Schoen
I fixed the error. After installing abci_server's dependencies using Mix with `mix deps.get`, I found **ranch** in the folder deps/abci_server/deps/ranch, which has a file `makefile` that contains the version of...
Based on your feedback I've modified Pull Request https://github.com/KrzysiekJ/abci_server/pull/3/files and removed the proposed change to the abci_server's Makefile so it still uses Ranch 1.3.2. The Pull Request only proposes to...
Oh bugger, I'm getting the same error. I was hoping to use this library to generate an account since the latest Web3.js 1.0.0-beta.27 hasn't finished adding `unlockAccount()` https://github.com/ethereum/web3.js/issues/1264. I just...
@SilentCicero Thanks, you've created some awesome resources and I just quickly tried them out, but they don't appear to incorporate deployment of an actual smart contract to a network. I...
I was mistaken about Web3.js 1.0.0-beta.27. `unlockAccount` does actually work. I didn't use Promises correctly in order to `unlockAccount` before running `deploy` to deploy the contract. Here's a commit where...
@rossshannon Thank you! I recently added devise_token_auth gem following this guide [http://www.developingandrails.com/2015/02/api-authentication-with-devisetokenauth.html](http://www.developingandrails.com/2015/02/api-authentication-with-devisetokenauth.html). After submitting username/password it gave me the error `wrong number of arguments 1 for 0` with reference to...
I've got the same issue. Electron 2.02, Devtron 1.4.0. I had setup Devtron before loading Dev Tools as follows ``` // Enable with `DEBUG=true yarn start` and access in Dev...
Perhaps truncate the description to say 40 characters on that product list page so it appears like this instead:  Use a function...
Using Rails 5.1.3, after generating migrations with `rails acts_as_taggable_on_engine:install:migrations`, I then tried to migrate them with `bundle exec rails db:drop db:create db:migrate` but it gave me error ``` Caused by:...
I tried changing to the following in https://github.com/ltfschoen/geth-node/blob/master/scripts/main.py and passed additional arguments defined in https://github.com/ethereum/py-solc/blob/master/solc/wrapper.py to the `compile_files` function. I also modified https://github.com/ethereum/py-solc/blob/master/solc/wrapper.py, moving the conditional check for `source_files` after...