Skip to content

Commit 60996a9

Browse files
committed
Removing Bisq
1 parent 1b21cd8 commit 60996a9

File tree

124 files changed

+51
-8624
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+51
-8624
lines changed

backend/mempool-config.sample.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,6 @@
9898
"GEOLITE2_ASN": "/usr/local/share/GeoIP/GeoLite2-ASN.mmdb",
9999
"GEOIP2_ISP": "/usr/local/share/GeoIP/GeoIP2-ISP.mmdb"
100100
},
101-
"BISQ": {
102-
"ENABLED": false,
103-
"DATA_PATH": "/bisq/statsnode-data/btc_mainnet/db"
104-
},
105101
"LIGHTNING": {
106102
"ENABLED": false,
107103
"BACKEND": "lnd",
@@ -132,9 +128,7 @@
132128
"MEMPOOL_API": "https://mempool.space/api/v1",
133129
"MEMPOOL_ONION": "http://mempoolhqx4isw62xs7abwphsq7ldayuidyx2v2oethdhhj6mlo2r6ad.onion/api/v1",
134130
"LIQUID_API": "https://liquid.network/api/v1",
135-
"LIQUID_ONION": "http://liquidmom47f6s3m53ebfxn47p76a6tlnxib3wp6deux7wuzotdr6cyd.onion/api/v1",
136-
"BISQ_URL": "https://bisq.markets/api",
137-
"BISQ_ONION": "http://bisqmktse2cabavbr2xjq7xw3h6g5ottemo5rolfcwt6aly6tp5fdryd.onion/api"
131+
"LIQUID_ONION": "http://liquidmom47f6s3m53ebfxn47p76a6tlnxib3wp6deux7wuzotdr6cyd.onion/api/v1"
138132
},
139133
"REDIS": {
140134
"ENABLED": false,

backend/src/__fixtures__/mempool-config.template.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,6 @@
9494
"ENABLED": false,
9595
"TX_PER_SECOND_SAMPLE_PERIOD": 20
9696
},
97-
"BISQ": {
98-
"ENABLED": true,
99-
"DATA_PATH": "__BISQ_DATA_PATH__"
100-
},
10197
"SOCKS5PROXY": {
10298
"ENABLED": true,
10399
"USE_ONION": true,
@@ -110,9 +106,7 @@
110106
"MEMPOOL_API": "__EXTERNAL_DATA_SERVER_MEMPOOL_API__",
111107
"MEMPOOL_ONION": "__EXTERNAL_DATA_SERVER_MEMPOOL_ONION__",
112108
"LIQUID_API": "__EXTERNAL_DATA_SERVER_LIQUID_API__",
113-
"LIQUID_ONION": "__EXTERNAL_DATA_SERVER_LIQUID_ONION__",
114-
"BISQ_URL": "__EXTERNAL_DATA_SERVER_BISQ_URL__",
115-
"BISQ_ONION": "__EXTERNAL_DATA_SERVER_BISQ_ONION__"
109+
"LIQUID_ONION": "__EXTERNAL_DATA_SERVER_LIQUID_ONION__"
116110
},
117111
"LIGHTNING": {
118112
"ENABLED": true,

backend/src/__tests__/config.test.ts

+1-7
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,6 @@ describe('Mempool Backend Config', () => {
108108

109109
expect(config.STATISTICS).toStrictEqual({ ENABLED: true, TX_PER_SECOND_SAMPLE_PERIOD: 150 });
110110

111-
expect(config.BISQ).toStrictEqual({ ENABLED: false, DATA_PATH: '/bisq/statsnode-data/btc_mainnet/db' });
112-
113111
expect(config.SOCKS5PROXY).toStrictEqual({
114112
ENABLED: false,
115113
USE_ONION: true,
@@ -123,9 +121,7 @@ describe('Mempool Backend Config', () => {
123121
MEMPOOL_API: 'https://mempool.space/api/v1',
124122
MEMPOOL_ONION: 'http://mempoolhqx4isw62xs7abwphsq7ldayuidyx2v2oethdhhj6mlo2r6ad.onion/api/v1',
125123
LIQUID_API: 'https://liquid.network/api/v1',
126-
LIQUID_ONION: 'http://liquidmom47f6s3m53ebfxn47p76a6tlnxib3wp6deux7wuzotdr6cyd.onion/api/v1',
127-
BISQ_URL: 'https://bisq.markets/api',
128-
BISQ_ONION: 'http://bisqmktse2cabavbr2xjq7xw3h6g5ottemo5rolfcwt6aly6tp5fdryd.onion/api'
124+
LIQUID_ONION: 'http://liquidmom47f6s3m53ebfxn47p76a6tlnxib3wp6deux7wuzotdr6cyd.onion/api/v1'
129125
});
130126

131127
expect(config.MAXMIND).toStrictEqual({
@@ -183,8 +179,6 @@ describe('Mempool Backend Config', () => {
183179

184180
expect(config.STATISTICS).toStrictEqual(fixture.STATISTICS);
185181

186-
expect(config.BISQ).toStrictEqual(fixture.BISQ);
187-
188182
expect(config.SOCKS5PROXY).toStrictEqual(fixture.SOCKS5PROXY);
189183

190184
expect(config.EXTERNAL_DATA_SERVER).toStrictEqual(fixture.EXTERNAL_DATA_SERVER);

0 commit comments

Comments
 (0)