diff options
author | Hsuan Lee <boczeratul@gmail.com> | 2019-04-01 17:51:48 +0800 |
---|---|---|
committer | Hsuan Lee <boczeratul@gmail.com> | 2019-04-01 17:51:48 +0800 |
commit | 5c6298757fcf84b9398343388098e884469451c2 (patch) | |
tree | 0f3897149368cffc21e9f8ad04177b97e7a60cd2 /ui | |
parent | a51bc82abf088a3320edfc52ea8113b4f29e94c0 (diff) | |
download | dexon-wallet-5c6298757fcf84b9398343388098e884469451c2.tar.gz dexon-wallet-5c6298757fcf84b9398343388098e884469451c2.tar.zst dexon-wallet-5c6298757fcf84b9398343388098e884469451c2.zip |
Use new RPC endpoint
Diffstat (limited to 'ui')
-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 0053389f..d1c70297 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': 'http://testnet.dexon.org:8545/', + 'rpcTarget': 'https://testnet-rpc.dexon.org/', 'identities': { '0xfdea65c8e26263f6d9a1b5de9555d2931a33b825': { 'address': '0xfdea65c8e26263f6d9a1b5de9555d2931a33b825', diff --git a/ui/app/reducers/dekusan.js b/ui/app/reducers/dekusan.js index 8c52d5fd..89290954 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: 'http://testnet.dexon.org:8545/', + rpcTarget: 'https://testnet-rpc.dexon.org/', identities: {}, unapprovedTxs: {}, noActiveNotices: true, |