Brian Mancini

Results 54 comments of Brian Mancini

@hack3r-0m sounds good. I'm working on it today. Need to get the secp256k1 lib published, which was the delay.

Should be in v0.27.0 now. Tip: you can add the npm package reference from the project root with `lerna add `. It will make sure everything is bootstrapped correctly.

Work still needing to be accomplished: 1. Need to simplify chart and remove some duplicate paths from multiple states: - Pre-broadcast - disconnect - receive shutdown - Post broadcast -...

Sorry for the delay. That command fetches the submodule `libsecp256k1`. This module is required in the `postinstall` script when node-gyp is run to compile the module. In order the `preinstall`...

> Yes, I made a mistake it should behave like an undirected graph. Nice Catch sweat Conceptually yes, channels are similar to undirected/symmetric directed graph. So both directions or every...

Also just for edification, node1/node2 in the channel are just the lexicographical ordering of the identifiers. When I first starting learning this stuff I thought node1 was the opener or...

> For Heap optimization, I found this package related to priority queues we can import that and workaround with it or should I build it from scratch? > > *...

Interesting. Any steps to repro this? If I shut down LND and attempt to access a page I get an error, but not an unhandled event exception. ``` error: Error:...

Ah, I repro'd it by starting lndexplorer without lnd running. I also got another error if lnd shuts down and restarts without restarting lndexplorer. ``` error: Error: 12 UNIMPLEMENTED: unknown...

Proxy support has not been added out of the box. However, this library makes heavy use of the `ws` library which does support HTTP and SOCKS proxies. Some changes to...