Merge pull request #313 from poanetwork/vb-change-classic-rpc-endpoint

Change Ethereum classic RPC endpoint
This commit is contained in:
Victor Baranov 2020-02-04 19:05:31 +03:00 committed by GitHub
commit 958c8b99f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 14 deletions

View File

@ -2,6 +2,8 @@
## Current Master
- [#313](https://github.com/poanetwork/nifty-wallet/pull/313) - Change Ethereum classic RPC endpoint
## 4.11.9 Thu Aug 22 2019
- [#303](https://github.com/poanetwork/nifty-wallet/pull/303): (Feature) Add Pocket Network

16
package-lock.json generated
View File

@ -11352,11 +11352,11 @@
}
},
"eth-net-props": {
"version": "1.0.24",
"resolved": "https://registry.npmjs.org/eth-net-props/-/eth-net-props-1.0.24.tgz",
"integrity": "sha512-wxwO2QftU7slA3Dlez0k700ODlVJ2uJ9YNWPkGHDIc1t9R7dM/3uGaxcTBvK40a6Tu7Fagp5ydyX7PJFgLuVGA==",
"version": "1.0.25",
"resolved": "https://registry.npmjs.org/eth-net-props/-/eth-net-props-1.0.25.tgz",
"integrity": "sha512-ZXm+8LeuWtDSsEN0dJ5n6wQ5Lly24kXlvAhsLtQ4Falg+z4mquGerqKWb38TL1DfOi2hxy3sbsCOo7qix6vX9A==",
"requires": {
"chai": "^4.1.2"
"chai": "^4.2.0"
}
},
"eth-phishing-detect": {
@ -16146,14 +16146,6 @@
"browserslist": "^3.2.6",
"invariant": "^2.2.2",
"semver": "^5.3.0"
},
"dependencies": {
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"dev": true
}
}
},
"babel-register": {

View File

@ -118,7 +118,7 @@
"eth-keychain-controller": "github:vbaranov/KeyringController#simple-address",
"eth-ledger-bridge-keyring": "github:vbaranov/eth-ledger-bridge-keyring#0.1.0-clear-accounts-flag",
"eth-method-registry": "^1.0.0",
"eth-net-props": "^1.0.24",
"eth-net-props": "^1.0.25",
"eth-phishing-detect": "^1.1.4",
"eth-query": "^2.1.2",
"eth-sig-util": "^2.2.0",

View File

@ -45,7 +45,7 @@ const { screens, elements, NETWORKS } = require('../elements')
const [tab0, tab1] = await f.driver.getAllWindowHandles()
await f.driver.switchTo().window(tab1)
const faucetLink = await f.driver.getCurrentUrl()
assert.equal(faucetLink, 'https://faucet.testnet.rsk.co/', 'Incorrect faucet link for RSK network')
assert.equal(faucetLink, 'https://faucet.rsk.co/', 'Incorrect faucet link for RSK network')
await f.driver.close()
await f.driver.switchTo().window(tab0)
const arrow = await f.waitUntilShowUp(elements.buttonArrow)