diff options
author | Hsuan Lee <hsuan@cobinhood.com> | 2018-12-10 23:02:10 +0800 |
---|---|---|
committer | Hsuan Lee <hsuan@cobinhood.com> | 2018-12-10 23:02:30 +0800 |
commit | 4f5ee8a1d223f66cc48205a9e6ba4875cf357a1b (patch) | |
tree | 2441a95b2b733e6ebe8118741d20cec32f8b3d96 /test/unit | |
parent | c0ede3738ebc693d035943ecd226f991eb9149c1 (diff) | |
download | dexon-wallet-4f5ee8a1d223f66cc48205a9e6ba4875cf357a1b.tar.gz dexon-wallet-4f5ee8a1d223f66cc48205a9e6ba4875cf357a1b.tar.zst dexon-wallet-4f5ee8a1d223f66cc48205a9e6ba4875cf357a1b.zip |
Refine translations and style
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/app/controllers/network-contoller-test.js | 2 | ||||
-rw-r--r-- | test/unit/development/sample-changelog.md | 8 | ||||
-rw-r--r-- | test/unit/development/sample-manifest.json | 2 | ||||
-rw-r--r-- | test/unit/ui/app/reducers/metamask.spec.js | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/test/unit/app/controllers/network-contoller-test.js b/test/unit/app/controllers/network-contoller-test.js index 02813f44..93a170cb 100644 --- a/test/unit/app/controllers/network-contoller-test.js +++ b/test/unit/app/controllers/network-contoller-test.js @@ -91,7 +91,7 @@ describe('Network utils', () => { expected: 'Kovan', }, { input: 'mainnet', - expected: 'Main Ethereum Network', + expected: 'Main DEXON Network', }, ] diff --git a/test/unit/development/sample-changelog.md b/test/unit/development/sample-changelog.md index 0e49b0cd..33b766e7 100644 --- a/test/unit/development/sample-changelog.md +++ b/test/unit/development/sample-changelog.md @@ -106,7 +106,7 @@ ## 3.12.0 2017-10-25 -- Add support for alternative ENS TLDs (Ethereum Name Service Top-Level Domains). +- Add support for alternative ENS TLDs (DEXON Name Service Top-Level Domains). - Lower minimum gas price to 0.1 GWEI. - Remove web3 injection message from production (thanks to @ChainsawBaby) - Add additional debugging info to our state logs, specifically OS version and browser version. @@ -645,7 +645,7 @@ popup notification opens up. - Fix bug where provider menu did not allow switching to custom network from a custom network. - Sending a transaction from within DekuSan no longer triggers a popup. - The ability to build without livereload features (such as for production) can be enabled with the gulp --disableLiveReload flag. -- Fix Ethereum JSON RPC Filters bug. +- Fix DEXON JSON RPC Filters bug. ## 2.10.0 2016-08-29 @@ -681,7 +681,7 @@ popup notification opens up. - Add a form for Coinbase to specify amount to buy - Fix various typos. - Make dapp-metamask connection more reliable -- Remove Ethereum Classic from provider menu. +- Remove DEXON Classic from provider menu. ## 2.7.3 2016-07-29 @@ -689,7 +689,7 @@ popup notification opens up. ## 2.7.2 2016-07-29 -- Add Ethereum Classic to provider menu +- Add DEXON Classic to provider menu - Fix bug where host store would fail to receive updates. ## 2.7.1 2016-07-27 diff --git a/test/unit/development/sample-manifest.json b/test/unit/development/sample-manifest.json index c9316e5a..b65a1b46 100644 --- a/test/unit/development/sample-manifest.json +++ b/test/unit/development/sample-manifest.json @@ -4,7 +4,7 @@ "version": "4.1.3", "manifest_version": 2, "author": "https://metamask.io", - "description": "Ethereum Browser Extension", + "description": "DEXON Browser Extension", "commands": { "_execute_browser_action": { "suggested_key": { diff --git a/test/unit/ui/app/reducers/metamask.spec.js b/test/unit/ui/app/reducers/metamask.spec.js index 502e7ef3..5fc97e73 100644 --- a/test/unit/ui/app/reducers/metamask.spec.js +++ b/test/unit/ui/app/reducers/metamask.spec.js @@ -5,7 +5,7 @@ import * as actions from '../../../../../ui/app/actions' describe('MetaMask Reducers', () => { it('init state', () => { - const initState = reduceMetamask({metamask: {}}, {}) + const initState = reduceMetamask({ dekusan: {}}, {}) assert(initState) }) |