diff options
author | Hsuan Lee <hsuan@cobinhood.com> | 2018-12-06 13:52:28 +0800 |
---|---|---|
committer | Hsuan Lee <hsuan@cobinhood.com> | 2018-12-10 18:53:28 +0800 |
commit | e5c217c426dcb134a790640addc6f44f1fdf66d2 (patch) | |
tree | aa9c3c89c8043a48a736709791d713cfe85fd4c8 /ui/app | |
parent | e8442db6f38afd120d299437709524d3adb5a70e (diff) | |
download | dexon-wallet-e5c217c426dcb134a790640addc6f44f1fdf66d2.tar.gz dexon-wallet-e5c217c426dcb134a790640addc6f44f1fdf66d2.tar.zst dexon-wallet-e5c217c426dcb134a790640addc6f44f1fdf66d2.zip |
Use unlimited endpoint
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/components/send/tests/send-selectors-test-data.js | 2 | ||||
-rw-r--r-- | ui/app/reducers/dekusan.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/send/tests/send-selectors-test-data.js b/ui/app/components/send/tests/send-selectors-test-data.js index 79489bf9..0053389f 100644 --- a/ui/app/components/send/tests/send-selectors-test-data.js +++ b/ui/app/components/send/tests/send-selectors-test-data.js @@ -3,7 +3,7 @@ module.exports = { 'isInitialized': true, 'isUnlocked': true, 'featureFlags': {'betaUI': true, 'sendHexData': true}, - 'rpcTarget': 'https://api-testnet.dexon.org/v1/network/rpc/', + 'rpcTarget': 'http://testnet.dexon.org:8545/', 'identities': { '0xfdea65c8e26263f6d9a1b5de9555d2931a33b825': { 'address': '0xfdea65c8e26263f6d9a1b5de9555d2931a33b825', diff --git a/ui/app/reducers/dekusan.js b/ui/app/reducers/dekusan.js index edfdaf39..8c52d5fd 100644 --- a/ui/app/reducers/dekusan.js +++ b/ui/app/reducers/dekusan.js @@ -17,7 +17,7 @@ function reduceDekusan (state, action) { isAccountMenuOpen: false, isMascara: window.platform instanceof MetamascaraPlatform, isPopup: getEnvironmentType(window.location.href) === ENVIRONMENT_TYPE_POPUP, - rpcTarget: 'https://api-testnet.dexon.org/v1/network/rpc/', + rpcTarget: 'http://testnet.dexon.org:8545/', identities: {}, unapprovedTxs: {}, noActiveNotices: true, |