Eric Martindale
Eric Martindale
+1 for this. [Generators and `yield` are available in node.js version 0.11.2](http://wingolog.org/archives/2013/05/08/generators-in-v8), Javascript 1.7 has been supported _since Firefox 2_, and [support in V8 / Chrome is imminent](https://code.google.com/p/v8/issues/detail?id=2355#c22). Things move...
+1 for the update! I'm looking forward to being able to use this again.
Did any progress get made on this issue?
> Run the SPV node and wallet in the same process as a plugin. Can you share a brief example?
What's the latest on this issue? I ran into it in a recent project.
I feel like both `tx` and `confirmed` (at +100 blocks?) events make sense here, as the application layer shouldn't have issues with duplicate transactions (given the mutability fix) — but...
Should I expect to receive the `tx` event when the block is received, or at `n + 100` blocks? Or at both? For my case, the `tx` event is enough,...
We're not getting `confirmed` _or_ `tx` events for coinbase transactions, though? > I need to double check this, but in resolving #887 I have also discovered that 'tx' events are...
Which class is expected to emit these events? We're not using HTTP interface, but rather instantiating `Wallet` and `FullNode` from within our application (sorry I haven't gotten back to #927...
> All wallet events are emitted by the `WalletDB` object. More here: https://bcoin.io/guides/events Okay, upon further digging into the code (there don't seem to be any docs for using bcoin...