Auto reload bisq dump file.

This commit is contained in:
softsimon
2020-07-10 14:13:07 +07:00
parent 4ff9663812
commit 8c23eae5fe
4 changed files with 53 additions and 13 deletions

View File

@@ -94,6 +94,7 @@ class Server {
this.app
.get(config.API_ENDPOINT + 'bisq/tx/:txId', routes.getBisqTransaction)
.get(config.API_ENDPOINT + 'bisq/block/:hash', routes.getBisqBlock)
.get(config.API_ENDPOINT + 'bisq/block/:hash/txs/:index/:length', routes.getBisqBlockTransactions)
.get(config.API_ENDPOINT + 'bisq/txs/:index/:length', routes.getBisqTransactions)
;
}