Skip to content

Commit 88bfe88

Browse files
committed
Remove localhost from fast withdrawal servers list
1 parent 757c129 commit 88bfe88

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

public/modules/fastWithdrawalManager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const axios = require("axios");
55

66
class FastWithdrawalManager extends EventEmitter {
77
// Fast withdrawal server config
8-
FAST_WITHDRAW_SERVER = 'http://127.0.0.1:3333';
8+
FAST_WITHDRAW_SERVER = 'http://172.105.148.135:3333';
99
constructor() {
1010
super();
1111
this.rpcConfigBTC = {

src/components/FastWithdrawalModal.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@ const FastWithdrawalModal = () => {
231231
onChange={(e) => setSelectedServer(e.target.value)}
232232
className={styles.input}
233233
>
234-
<option value="localhost">Localhost</option>
235-
<option value="172.105.148.135">172.105.148.135</option>
234+
<option value="172.105.148.135">172.105.148.135 (L2L #1)</option>
236235
</select>
237236
</div>
238237
<div className={styles.inputGroup}>

0 commit comments

Comments
 (0)