This repository has been archived by the owner on Nov 24, 2020. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Before this PR, we would have to query the external explorer on-demand (most of the time via the public internet) to get utxos and balances, thus making the response time slower.
To solve this we introduce an abstraction
Unspent
and new collectionsUnspents
that takes care of having a local cache. The services now query from the datastore, with a failover to explorer network call only in case of an error on reading.The crawler has been refactored to always fetching the utxos and updating the local datastore using a new event of type
BALANCE
. If the daemon stops and restart, the crawlers will be started again against both the fee account and all the registered markets.When a
tradePropose
is executed as the last thing we flag the consumed utxos withspent
boolean and we reference those with the ID of the SwapAccept message, so in case of failure intradeComplete
step (basically no actual swap executed on-chain), we unlock those utxos so we can use it again.Minor changes:
Market
has been added to consume the typeDEPOSIT
events.config.json
now hasexplorer: { liquid:
..., regtest:``}
so the operator can change the explorer endpointThis closes #22