mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 14:50:52 +01:00
Merge pull request #1633 from knorrium/fix_socks5_connection
Fix the socks5 connection after updating the socks lib
This commit is contained in:
commit
0b0b37b5aa
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ class FiatConversion {
|
||||||
agentOptions: {
|
agentOptions: {
|
||||||
keepAlive: true,
|
keepAlive: true,
|
||||||
},
|
},
|
||||||
host: config.SOCKS5PROXY.HOST,
|
hostname: config.SOCKS5PROXY.HOST,
|
||||||
port: config.SOCKS5PROXY.PORT
|
port: config.SOCKS5PROXY.PORT
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ class SyncAssets {
|
||||||
agentOptions: {
|
agentOptions: {
|
||||||
keepAlive: true,
|
keepAlive: true,
|
||||||
},
|
},
|
||||||
host: config.SOCKS5PROXY.HOST,
|
hostname: config.SOCKS5PROXY.HOST,
|
||||||
port: config.SOCKS5PROXY.PORT
|
port: config.SOCKS5PROXY.PORT
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue