Remove all EXP references from old wallet
This commit is contained in:
parent
27d8befbad
commit
0292348bd6
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -25,7 +25,6 @@ export default {
|
||||
chains: {
|
||||
chain_classic: `Parity syncs to the Ethereum Classic network`,
|
||||
chain_dev: `Parity uses a local development chain`,
|
||||
chain_expanse: `Parity syncs to the Expanse network`,
|
||||
chain_foundation: `Parity syncs to the Ethereum network launched by the Ethereum Foundation`,
|
||||
chain_kovan: `Parity syncs to the Kovan test network`,
|
||||
chain_olympic: `Parity syncs to the Olympic test network`,
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -25,7 +25,6 @@ export default {
|
||||
chains: {
|
||||
chain_classic: `Parity synchroniseert met het Ethereum Classic netwerk`,
|
||||
chain_dev: `Parity gebruikt een lokale ontwikkelaars chain`,
|
||||
chain_expanse: `Parity synchroniseert met het Expanse netwerk`,
|
||||
chain_foundation: `Parity synchroniseert met het Ethereum netwerk wat door de Ethereum Foundation is uitgebracht`,
|
||||
chain_kovan: `Parity synchroniseert met het Kovan test netwerk`,
|
||||
chain_olympic: `Parity synchroniseert met het Olympic test netwerk`,
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -29,7 +29,6 @@ export default {
|
||||
chains: {
|
||||
chain_classic: `將Parity同步至以太坊經典網路`, // Parity syncs to the Ethereum Classic network
|
||||
chain_dev: `將Parity使用一條本地開發用區塊鏈`, // Parity uses a local development chain
|
||||
chain_expanse: `將Parity同步至Expanse網路`, // Parity syncs to the Expanse network
|
||||
chain_foundation: `將Parity同步至以太坊基金會發起的以太坊網路`, // Parity syncs to the Ethereum network launched by the Ethereum Foundation
|
||||
chain_kovan: `將Parity同步至Kovan測試網路`, // Parity syncs to the Kovan test network
|
||||
chain_olympic: `將Parity同步至Olympic測試網路`, // Parity syncs to the Olympic test network
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -29,7 +29,6 @@ export default {
|
||||
chains: {
|
||||
chain_classic: `将Parity同步至以太坊经典网络`, // Parity syncs to the Ethereum Classic network
|
||||
chain_dev: `将Parity使用一条本地开发用区块链`, // Parity uses a local development chain
|
||||
chain_expanse: `将Parity同步至Expanse网络`, // Parity syncs to the Expanse network
|
||||
chain_foundation: `将Parity同步至以太坊基金会发起的以太坊网络`, // Parity syncs to the Ethereum network launched by the Ethereum Foundation
|
||||
chain_kovan: `将Parity同步至Kovan测试网络`, // Parity syncs to the Kovan test network
|
||||
chain_olympic: `将Parity同步至Olympic测试网络`, // Parity syncs to the Olympic test network
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -39,12 +39,6 @@ export default class CurrencySymbolExample extends Component {
|
||||
netChain='classic'
|
||||
/>
|
||||
</PlaygroundExample>
|
||||
|
||||
<PlaygroundExample name='EXP Currency Symbol'>
|
||||
<CurrencySymbol
|
||||
netChain='expanse'
|
||||
/>
|
||||
</PlaygroundExample>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -42,9 +42,6 @@ export class CurrencySymbol extends Component {
|
||||
case 'classic':
|
||||
return SYMBOL_ETC;
|
||||
|
||||
case 'expanse':
|
||||
return SYMBOL_EXP;
|
||||
|
||||
default:
|
||||
return SYMBOL_ETH;
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -70,10 +70,6 @@ describe('ui/CurrencySymbol', () => {
|
||||
expect(render('classic').text()).equal('ETC');
|
||||
});
|
||||
|
||||
it('renders EXP for expanse', () => {
|
||||
expect(render('expanse').text()).equal('EXP');
|
||||
});
|
||||
|
||||
it('renders ETH as default', () => {
|
||||
expect(render('somethingElse').text()).equal('ETH');
|
||||
});
|
||||
@ -91,9 +87,5 @@ describe('ui/CurrencySymbol', () => {
|
||||
it('render ETC', () => {
|
||||
expect(render('classic').instance().renderSymbol()).equal('ETC');
|
||||
});
|
||||
|
||||
it('render EXP', () => {
|
||||
expect(render('expanse').instance().renderSymbol()).equal('EXP');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -253,14 +253,6 @@ export default class Parity extends Component {
|
||||
/>
|
||||
))
|
||||
}
|
||||
{
|
||||
this.renderItem('expanse', (
|
||||
<FormattedMessage
|
||||
id='settings.parity.chains.chain_expanse'
|
||||
defaultMessage='Parity syncs to the Expanse network'
|
||||
/>
|
||||
))
|
||||
}
|
||||
{
|
||||
this.renderItem('dev', (
|
||||
<FormattedMessage
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -25,7 +25,6 @@ export default {
|
||||
chains: {
|
||||
chain_classic: `Parity syncs to the Ethereum Classic network`,
|
||||
chain_dev: `Parity uses a local development chain`,
|
||||
chain_expanse: `Parity syncs to the Expanse network`,
|
||||
chain_musicoin: `Parity syncs to the Musicoin network`,
|
||||
chain_foundation: `Parity syncs to the Ethereum network launched by the Ethereum Foundation`,
|
||||
chain_kovan: `Parity syncs to the Kovan test network`,
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -25,7 +25,6 @@ export default {
|
||||
chains: {
|
||||
chain_classic: `Parity synchroniseert met het Ethereum Classic netwerk`,
|
||||
chain_dev: `Parity gebruikt een lokale ontwikkelaars chain`,
|
||||
chain_expanse: `Parity synchroniseert met het Expanse netwerk`,
|
||||
chain_musicoin: `Parity synchroniseert met het Musicoin netwerk`,
|
||||
chain_foundation: `Parity synchroniseert met het Ethereum netwerk wat door de Ethereum Foundation is uitgebracht`,
|
||||
chain_kovan: `Parity synchroniseert met het Kovan test netwerk`,
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -29,7 +29,6 @@ export default {
|
||||
chains: {
|
||||
chain_classic: `將Parity同步至以太坊經典網路`, // Parity syncs to the Ethereum Classic network
|
||||
chain_dev: `將Parity使用一條本地開發用區塊鏈`, // Parity uses a local development chain
|
||||
chain_expanse: `將Parity同步至Expanse網路`, // Parity syncs to the Expanse network
|
||||
chain_musicoin: `將Parity同步至Musicoin網路`, // Parity syncs to the Musicoin network
|
||||
chain_foundation: `將Parity同步至以太坊基金會發起的以太坊網路`, // Parity syncs to the Ethereum network launched by the Ethereum Foundation
|
||||
chain_kovan: `將Parity同步至Kovan測試網路`, // Parity syncs to the Kovan test network
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
||||
// This file is part of Parity.
|
||||
|
||||
// Parity is free software: you can redistribute it and/or modify
|
||||
@ -29,7 +29,6 @@ export default {
|
||||
chains: {
|
||||
chain_classic: `将Parity同步至以太坊经典网络`, // Parity syncs to the Ethereum Classic network
|
||||
chain_dev: `将Parity使用一条本地开发用区块链`, // Parity uses a local development chain
|
||||
chain_expanse: `将Parity同步至Expanse网络`, // Parity syncs to the Expanse network
|
||||
chain_musicoin: `将Parity同步至Musicoin网络`, // Parity syncs to the Musicoin network
|
||||
chain_foundation: `将Parity同步至以太坊基金会发起的以太坊网络`, // Parity syncs to the Ethereum network launched by the Ethereum Foundation
|
||||
chain_kovan: `将Parity同步至Kovan测试网络`, // Parity syncs to the Kovan test network
|
||||
|
Loading…
Reference in New Issue
Block a user