quantadex / distributed_quanta_bridge

The distributed version of the quanta bridge
1 stars 0 forks source link

improve performance of BTC #36

Closed quocble closed 5 years ago

quocble commented 5 years ago

It takes about 20 minutes to read a whole block.

Let's do this...

in GetDeposit, retrieve listunspent first (which gets indexed by the bitcoin node when we add a multisig address), then create a map lookup table based on txid.

If any deposit can be found in txid, we process it. This saves a lot of time from getting "raw" transaction and everything else.

quocble commented 5 years ago

This work was completed.