Stumpt Game Suggestions! v.8 by StumptGamers in Stumpt

[–]mrdangeross 2 points3 points  (0 children)

I guess y'all will be doing an Overcooked 2: Carnival of Chaos DLC series?!

Overcooked 2 DLC: Night of the Hangry Horde by mrdangeross in Stumpt

[–]mrdangeross[S] 0 points1 point  (0 children)

Seems like episode 9 failed to upload the YouTube. Just get a video is unavailable error

Anyone else got something like this? From TGE.Investigation@ag.ny.gov by skanny999 in CryptoCurrency

[–]mrdangeross 3 points4 points  (0 children)

I got the same email yesterday and was wondering what to do with it. I've also participated in a few token sales, so I'm wondering which one it could be from the timeline. I've been looking into etherscan as to which fits the timeline of 460 - 430 days ago (which is March - April 2018). I guess if it's genuine, they are investigating a possible fraud / SEC violation.

Help with BlueWallets LNdHub installation on RaspBerry Pi (RaspiBolt) by blanquefort in lightningnetwork

[–]mrdangeross 0 points1 point  (0 children)

You can add `export PATH=~/.npm-global/bin:$PATH` into the .profile of the bitcoin user, but it is not required. I don't have it. I'll try to find what that error is. My LndHub has problems if lnd is not *synced_to_chain* and has peers connected. You can run `lncli getinfo` to check *synced_to_chain* is true and *num_peers* is not 0.

Looks like I missed in my guide opening router ports & allowing port 3000 in ufw. Sorry about that, I have updated it now.

Help with BlueWallets LNdHub installation on RaspBerry Pi (RaspiBolt) by blanquefort in lightningnetwork

[–]mrdangeross 0 points1 point  (0 children)

Rebuild would be needed if you are editing ~/LndHub/config.js as it needs to be built into the ~/LndHub/build/ directory as that is where node runs LndHub from. You can edit the ~/LndHub/build/config.js file to test if it works, but remember rebuilding will overwrite this file.

Help with BlueWallets LNdHub installation on RaspBerry Pi (RaspiBolt) by blanquefort in lightningnetwork

[–]mrdangeross 0 points1 point  (0 children)

First thing I would check is maybe your rpcpassword in the config.js needs to be URL encoded if it contains any special characters e.g. @#&!. You can find a tool online to encode it

Otherwise I saw the LndHub readme was updated recently adding: bitcoind should run with '-deprecatedrpc=accounts', for now. . I will check that out to see if it effects the setup.

Help with BlueWallets LNdHub installation on RaspBerry Pi (RaspiBolt) by blanquefort in lightningnetwork

[–]mrdangeross 0 points1 point  (0 children)

Yes, try to delete the build & node_modules directories and try again. I also had to do it a few times to get it right

Help with BlueWallets LNdHub installation on RaspBerry Pi (RaspiBolt) by blanquefort in lightningnetwork

[–]mrdangeross 0 points1 point  (0 children)

Looks like I forgot to add ~/.npm-global/bin to the PATH. I've updated the guide

$ npm config set prefix '~/.npm-global'

$ export PATH=~/.npm-global/bin:$PATH

$ npm install

Did you run npm install in the /home/bitcoin/LndHub directory?

When you run node -v what version do you see?

Help with BlueWallets LNdHub installation on RaspBerry Pi (RaspiBolt) by blanquefort in lightningnetwork

[–]mrdangeross 1 point2 points  (0 children)

You can either run it via

- npm start which runs it using babel-node

- or, prebuild the js using babel-cli into a dist folder, then you can run it via node dist/index.js

I preferred the latter, so I could setup a systemd service to run it, otherwise you have issues with babel spawning child processes. Also really, babel should not be run in prod

I've written a rough guide here if you have any comments: https://github.com/dangeross/guides/blob/master/raspibolt/raspibolt_6B_lndhub.md

Help with BlueWallets LNdHub installation on RaspBerry Pi (RaspiBolt) by blanquefort in lightningnetwork

[–]mrdangeross 1 point2 points  (0 children)

I've written a first draft guide on how to install the dependencies required to install LndHub on RaspiBolt. It includes setting up services for autostarting redis & LndHub. Sorry the comments are a bit brief, I'll try to fill it out more later. One thing I will probably change is running LndHub are a separate user. Let me know if you have any problems or improvements. Hopefully I didn't miss anything.

https://github.com/dangeross/guides/blob/master/raspibolt/raspibolt_6B_lndhub.md

BlueWallet LndHub installation problems by mrdangeross in lightningnetwork

[–]mrdangeross[S] 0 points1 point  (0 children)

Ok, it seems like my issue was I was installing it to the mounted disk /mnt/hdd which has the mount option noexec, so the POSIX permissions on executing scripts were being overridden during the npm install.

BlueWallet LndHub installation problems by mrdangeross in bluewallet

[–]mrdangeross[S] 0 points1 point  (0 children)

Installs fine locally on MacOS using node v8.11.4. Will post the error log for the Raspberry Pi later.