2021-05-07 21:38:24 +02:00
|
|
|
import { strict as assert } from 'assert';
|
2021-02-04 19:15:23 +01:00
|
|
|
import sinon from 'sinon';
|
2022-11-24 20:59:07 +01:00
|
|
|
import { ControllerMessenger } from '@metamask/base-controller';
|
|
|
|
import { TokenListController } from '@metamask/assets-controllers';
|
2022-09-14 16:55:31 +02:00
|
|
|
import { CHAIN_IDS } from '../../../shared/constants/network';
|
2021-03-16 22:00:08 +01:00
|
|
|
import PreferencesController from './preferences';
|
2021-06-22 19:39:44 +02:00
|
|
|
import NetworkController from './network';
|
2017-12-19 00:49:55 +01:00
|
|
|
|
|
|
|
describe('preferences controller', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
let preferencesController;
|
|
|
|
let network;
|
2021-02-26 16:40:25 +01:00
|
|
|
let currentChainId;
|
2021-06-22 19:39:44 +02:00
|
|
|
let provider;
|
2022-08-10 03:26:25 +02:00
|
|
|
let tokenListController;
|
2017-12-19 00:49:55 +01:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
beforeEach(function () {
|
2021-06-22 19:39:44 +02:00
|
|
|
const sandbox = sinon.createSandbox();
|
2022-09-14 16:55:31 +02:00
|
|
|
currentChainId = CHAIN_IDS.MAINNET;
|
2021-06-22 19:39:44 +02:00
|
|
|
const networkControllerProviderConfig = {
|
|
|
|
getAccounts: () => undefined,
|
2021-02-26 16:40:25 +01:00
|
|
|
};
|
2022-12-13 16:39:21 +01:00
|
|
|
network = new NetworkController({ infuraProjectId: 'foo' });
|
2021-06-22 19:39:44 +02:00
|
|
|
network.initializeProvider(networkControllerProviderConfig);
|
|
|
|
provider = network.getProviderAndBlockTracker().provider;
|
2022-08-10 03:26:25 +02:00
|
|
|
const tokenListMessenger = new ControllerMessenger().getRestricted({
|
|
|
|
name: 'TokenListController',
|
|
|
|
});
|
|
|
|
tokenListController = new TokenListController({
|
|
|
|
chainId: '1',
|
|
|
|
preventPollingOnNetworkRestart: false,
|
|
|
|
onNetworkStateChange: sinon.spy(),
|
|
|
|
onPreferencesStateChange: sinon.spy(),
|
|
|
|
messenger: tokenListMessenger,
|
|
|
|
});
|
2021-06-22 19:39:44 +02:00
|
|
|
|
2021-06-25 18:24:00 +02:00
|
|
|
sandbox
|
2022-12-13 20:13:54 +01:00
|
|
|
.stub(network, '_getLatestBlock')
|
2021-06-25 18:24:00 +02:00
|
|
|
.callsFake(() => Promise.resolve({}));
|
2021-06-22 19:39:44 +02:00
|
|
|
sandbox.stub(network, 'getCurrentChainId').callsFake(() => currentChainId);
|
|
|
|
sandbox
|
|
|
|
.stub(network, 'getProviderConfig')
|
|
|
|
.callsFake(() => ({ type: 'mainnet' }));
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
preferencesController = new PreferencesController({
|
2021-12-08 22:36:53 +01:00
|
|
|
initLangCode: 'en_US',
|
2020-11-03 00:41:28 +01:00
|
|
|
network,
|
2021-06-22 19:39:44 +02:00
|
|
|
provider,
|
2022-08-10 03:26:25 +02:00
|
|
|
tokenListController,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
Update address book state upon custom RPC chainId edit (#9493)
When the `chainId` for a custom RPC endpoint is edited, we now migrate
the corresponding address book entries to ensure they are not orphaned.
The address book entries are grouped by the `metamask.network` state,
which unfortunately was sometimes the `chainId`, and sometimes the
`networkId`. It was always the `networkId` for built-in Infura
networks, but for custom RPC endpoints it would be set to the user-set
`chainId` field, with a fallback to the `networkId` of the network.
A recent change will force users to enter valid `chainId`s on all
custom networks, which will be normalized to be hex-prefixed. As a
result, address book contacts will now be keyed by a different string.
The contact entries are now migrated when this edit takes place.
There are some edge cases where two separate entries share the same set
of contacts. For example, if two entries have the same `chainId`, or if
they had the same `networkId` and had no `chainId` set. When the
`chainId` is edited in such cases, the contacts are duplicated on both
networks. This is the best we can do, as we don't have any way to know
which network the contacts _should_ be on.
The `typed-message-manager` unit tests have also been updated as part
of this commit because the addition of `sinon.restore()` to the
preferences controller tests ended up clearing a test object in-between
individual tests in that file. The test object is now re-constructed
before each individual test.
2020-10-07 19:32:17 +02:00
|
|
|
|
|
|
|
afterEach(function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
sinon.restore();
|
|
|
|
});
|
2017-12-19 00:49:55 +01:00
|
|
|
|
2021-12-08 22:36:53 +01:00
|
|
|
describe('useBlockie', function () {
|
|
|
|
it('defaults useBlockie to false', function () {
|
|
|
|
assert.equal(preferencesController.store.getState().useBlockie, false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('setUseBlockie to true', function () {
|
|
|
|
preferencesController.setUseBlockie(true);
|
|
|
|
assert.equal(preferencesController.store.getState().useBlockie, true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('setCurrentLocale', function () {
|
|
|
|
it('checks the default currentLocale', function () {
|
|
|
|
const { currentLocale } = preferencesController.store.getState();
|
|
|
|
assert.equal(currentLocale, 'en_US');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets current locale in preferences controller', function () {
|
|
|
|
preferencesController.setCurrentLocale('ja');
|
|
|
|
const { currentLocale } = preferencesController.store.getState();
|
|
|
|
assert.equal(currentLocale, 'ja');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-04-19 05:33:51 +02:00
|
|
|
describe('setAddresses', function () {
|
|
|
|
it('should keep a map of addresses to names and addresses in the store', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
preferencesController.setAddresses(['0xda22le', '0x7e57e2']);
|
2018-04-19 05:33:51 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const { identities } = preferencesController.store.getState();
|
2018-04-19 05:33:51 +02:00
|
|
|
assert.deepEqual(identities, {
|
|
|
|
'0xda22le': {
|
|
|
|
name: 'Account 1',
|
|
|
|
address: '0xda22le',
|
|
|
|
},
|
|
|
|
'0x7e57e2': {
|
|
|
|
name: 'Account 2',
|
|
|
|
address: '0x7e57e2',
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2018-04-19 05:33:51 +02:00
|
|
|
|
|
|
|
it('should replace its list of addresses', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
preferencesController.setAddresses(['0xda22le', '0x7e57e2']);
|
|
|
|
preferencesController.setAddresses(['0xda22le77', '0x7e57e277']);
|
2018-04-19 05:33:51 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const { identities } = preferencesController.store.getState();
|
2018-04-19 05:33:51 +02:00
|
|
|
assert.deepEqual(identities, {
|
|
|
|
'0xda22le77': {
|
|
|
|
name: 'Account 1',
|
|
|
|
address: '0xda22le77',
|
|
|
|
},
|
|
|
|
'0x7e57e277': {
|
|
|
|
name: 'Account 2',
|
|
|
|
address: '0x7e57e277',
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-04-19 05:33:51 +02:00
|
|
|
|
2018-07-16 22:08:19 +02:00
|
|
|
describe('removeAddress', function () {
|
|
|
|
it('should remove an address from state', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
preferencesController.setAddresses(['0xda22le', '0x7e57e2']);
|
2018-07-16 22:08:19 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
preferencesController.removeAddress('0xda22le');
|
2018-07-16 22:08:19 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().identities['0xda22le'],
|
|
|
|
undefined,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2018-07-16 22:08:19 +02:00
|
|
|
|
|
|
|
it('should switch accounts if the selected address is removed', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
preferencesController.setAddresses(['0xda22le', '0x7e57e2']);
|
2018-07-16 22:08:19 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
preferencesController.setSelectedAddress('0x7e57e2');
|
|
|
|
preferencesController.removeAddress('0x7e57e2');
|
2018-07-16 22:08:19 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.equal(preferencesController.getSelectedAddress(), '0xda22le');
|
|
|
|
});
|
|
|
|
});
|
2018-07-16 22:08:19 +02:00
|
|
|
|
2018-04-19 05:33:51 +02:00
|
|
|
describe('setAccountLabel', function () {
|
|
|
|
it('should update a label for the given account', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
preferencesController.setAddresses(['0xda22le', '0x7e57e2']);
|
2020-11-03 00:41:28 +01:00
|
|
|
|
|
|
|
assert.deepEqual(
|
|
|
|
preferencesController.store.getState().identities['0xda22le'],
|
|
|
|
{
|
|
|
|
name: 'Account 1',
|
|
|
|
address: '0xda22le',
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2018-04-19 05:33:51 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
preferencesController.setAccountLabel('0xda22le', 'Dazzle');
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.deepEqual(
|
|
|
|
preferencesController.store.getState().identities['0xda22le'],
|
|
|
|
{
|
|
|
|
name: 'Dazzle',
|
|
|
|
address: '0xda22le',
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2018-04-19 05:33:51 +02:00
|
|
|
|
2018-09-11 02:01:15 +02:00
|
|
|
describe('setPasswordForgotten', function () {
|
|
|
|
it('should default to false', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
const state = preferencesController.store.getState();
|
|
|
|
assert.equal(state.forgottenPassword, false);
|
|
|
|
});
|
2018-09-11 02:01:15 +02:00
|
|
|
|
|
|
|
it('should set the forgottenPassword property in state', function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().forgottenPassword,
|
|
|
|
false,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2018-09-11 02:01:15 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
preferencesController.setPasswordForgotten(true);
|
2018-09-11 02:01:15 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().forgottenPassword,
|
|
|
|
true,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2018-09-11 02:01:15 +02:00
|
|
|
|
2020-10-06 19:57:02 +02:00
|
|
|
describe('adding and removing from frequentRpcListDetail', function () {
|
2018-10-19 22:20:54 +02:00
|
|
|
it('should add custom RPC url to state', function () {
|
2023-01-12 20:05:48 +01:00
|
|
|
preferencesController.upsertToFrequentRpcList('rpc_url', '0x1');
|
2020-10-12 21:05:40 +02:00
|
|
|
assert.deepEqual(
|
|
|
|
preferencesController.store.getState().frequentRpcListDetail,
|
2020-11-03 00:41:28 +01:00
|
|
|
[
|
|
|
|
{
|
|
|
|
rpcUrl: 'rpc_url',
|
|
|
|
chainId: '0x1',
|
|
|
|
ticker: 'ETH',
|
|
|
|
nickname: '',
|
|
|
|
rpcPrefs: {},
|
|
|
|
},
|
|
|
|
],
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2023-01-12 20:05:48 +01:00
|
|
|
preferencesController.upsertToFrequentRpcList('rpc_url', '0x1');
|
2020-10-12 21:05:40 +02:00
|
|
|
assert.deepEqual(
|
|
|
|
preferencesController.store.getState().frequentRpcListDetail,
|
2020-11-03 00:41:28 +01:00
|
|
|
[
|
|
|
|
{
|
|
|
|
rpcUrl: 'rpc_url',
|
|
|
|
chainId: '0x1',
|
|
|
|
ticker: 'ETH',
|
|
|
|
nickname: '',
|
|
|
|
rpcPrefs: {},
|
|
|
|
},
|
|
|
|
],
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2020-10-06 19:57:02 +02:00
|
|
|
|
|
|
|
it('should throw if chainId is invalid', function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.throws(() => {
|
2023-01-12 20:05:48 +01:00
|
|
|
preferencesController.upsertToFrequentRpcList('rpc_url', '1');
|
2021-02-04 19:15:23 +01:00
|
|
|
}, 'should throw on invalid chainId');
|
|
|
|
});
|
2018-10-19 22:20:54 +02:00
|
|
|
|
|
|
|
it('should remove custom RPC url from state', function () {
|
2023-01-12 20:05:48 +01:00
|
|
|
preferencesController.upsertToFrequentRpcList('rpc_url', '0x1');
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.deepEqual(
|
|
|
|
preferencesController.store.getState().frequentRpcListDetail,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
rpcUrl: 'rpc_url',
|
|
|
|
chainId: '0x1',
|
|
|
|
ticker: 'ETH',
|
|
|
|
nickname: '',
|
|
|
|
rpcPrefs: {},
|
|
|
|
},
|
|
|
|
],
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
preferencesController.removeFromFrequentRpcList('other_rpc_url');
|
|
|
|
preferencesController.removeFromFrequentRpcList('http://localhost:8545');
|
|
|
|
preferencesController.removeFromFrequentRpcList('rpc_url');
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.deepEqual(
|
|
|
|
preferencesController.store.getState().frequentRpcListDetail,
|
|
|
|
[],
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2017-12-19 00:49:55 +01:00
|
|
|
|
2020-02-27 07:29:41 +01:00
|
|
|
describe('setUsePhishDetect', function () {
|
|
|
|
it('should default to true', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
const state = preferencesController.store.getState();
|
|
|
|
assert.equal(state.usePhishDetect, true);
|
|
|
|
});
|
2020-02-27 07:29:41 +01:00
|
|
|
|
|
|
|
it('should set the usePhishDetect property in state', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.equal(preferencesController.store.getState().usePhishDetect, true);
|
|
|
|
preferencesController.setUsePhishDetect(false);
|
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().usePhishDetect,
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2022-12-01 22:16:04 +01:00
|
|
|
|
|
|
|
describe('setUseMultiAccountBalanceChecker', function () {
|
|
|
|
it('should default to true', function () {
|
|
|
|
const state = preferencesController.store.getState();
|
|
|
|
assert.equal(state.useMultiAccountBalanceChecker, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set the setUseMultiAccountBalanceChecker property in state', function () {
|
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().useMultiAccountBalanceChecker,
|
|
|
|
true,
|
|
|
|
);
|
|
|
|
|
|
|
|
preferencesController.setUseMultiAccountBalanceChecker(false);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().useMultiAccountBalanceChecker,
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-09-09 22:56:27 +02:00
|
|
|
describe('setUseTokenDetection', function () {
|
2021-09-16 19:07:23 +02:00
|
|
|
it('should default to false', function () {
|
2021-07-16 01:08:16 +02:00
|
|
|
const state = preferencesController.store.getState();
|
2021-09-16 19:07:23 +02:00
|
|
|
assert.equal(state.useTokenDetection, false);
|
2021-07-16 01:08:16 +02:00
|
|
|
});
|
|
|
|
|
2021-09-09 22:56:27 +02:00
|
|
|
it('should set the useTokenDetection property in state', function () {
|
2021-07-16 01:08:16 +02:00
|
|
|
assert.equal(
|
2021-09-09 22:56:27 +02:00
|
|
|
preferencesController.store.getState().useTokenDetection,
|
2021-09-16 19:07:23 +02:00
|
|
|
false,
|
2021-07-16 01:08:16 +02:00
|
|
|
);
|
2021-09-16 19:07:23 +02:00
|
|
|
preferencesController.setUseTokenDetection(true);
|
2021-07-16 01:08:16 +02:00
|
|
|
assert.equal(
|
2021-09-09 22:56:27 +02:00
|
|
|
preferencesController.store.getState().useTokenDetection,
|
2021-09-16 19:07:23 +02:00
|
|
|
true,
|
2021-07-16 01:08:16 +02:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2021-11-11 20:18:50 +01:00
|
|
|
|
2022-11-15 19:49:42 +01:00
|
|
|
describe('setUseNftDetection', function () {
|
2021-11-26 19:54:57 +01:00
|
|
|
it('should default to false', function () {
|
|
|
|
const state = preferencesController.store.getState();
|
2022-11-15 19:49:42 +01:00
|
|
|
assert.equal(state.useNftDetection, false);
|
2021-11-26 19:54:57 +01:00
|
|
|
});
|
|
|
|
|
2022-11-15 19:49:42 +01:00
|
|
|
it('should set the useNftDetection property in state', function () {
|
2021-11-26 19:54:57 +01:00
|
|
|
assert.equal(
|
2022-11-15 19:49:42 +01:00
|
|
|
preferencesController.store.getState().useNftDetection,
|
2021-11-26 19:54:57 +01:00
|
|
|
false,
|
|
|
|
);
|
2021-12-01 05:12:27 +01:00
|
|
|
preferencesController.setOpenSeaEnabled(true);
|
2022-11-15 19:49:42 +01:00
|
|
|
preferencesController.setUseNftDetection(true);
|
2021-11-26 19:54:57 +01:00
|
|
|
assert.equal(
|
2022-11-15 19:49:42 +01:00
|
|
|
preferencesController.store.getState().useNftDetection,
|
2021-11-26 19:54:57 +01:00
|
|
|
true,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-12-01 05:12:27 +01:00
|
|
|
describe('setOpenSeaEnabled', function () {
|
|
|
|
it('should default to false', function () {
|
|
|
|
const state = preferencesController.store.getState();
|
|
|
|
assert.equal(state.openSeaEnabled, false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set the openSeaEnabled property in state', function () {
|
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().openSeaEnabled,
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
preferencesController.setOpenSeaEnabled(true);
|
|
|
|
assert.equal(preferencesController.store.getState().openSeaEnabled, true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-11-11 20:18:50 +01:00
|
|
|
describe('setAdvancedGasFee', function () {
|
|
|
|
it('should default to null', function () {
|
|
|
|
const state = preferencesController.store.getState();
|
|
|
|
assert.equal(state.advancedGasFee, null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set the setAdvancedGasFee property in state', function () {
|
|
|
|
const state = preferencesController.store.getState();
|
|
|
|
assert.equal(state.advancedGasFee, null);
|
|
|
|
preferencesController.setAdvancedGasFee({
|
|
|
|
maxBaseFee: '1.5',
|
|
|
|
priorityFee: '2',
|
|
|
|
});
|
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().advancedGasFee.maxBaseFee,
|
|
|
|
'1.5',
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().advancedGasFee.priorityFee,
|
|
|
|
'2',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2022-03-07 19:53:19 +01:00
|
|
|
|
|
|
|
describe('setTheme', function () {
|
2023-01-06 21:07:47 +01:00
|
|
|
it('should default to value "OS"', function () {
|
2022-03-07 19:53:19 +01:00
|
|
|
const state = preferencesController.store.getState();
|
2023-01-06 21:07:47 +01:00
|
|
|
assert.equal(state.theme, 'os');
|
2022-03-07 19:53:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should set the setTheme property in state', function () {
|
|
|
|
const state = preferencesController.store.getState();
|
2023-01-06 21:07:47 +01:00
|
|
|
assert.equal(state.theme, 'os');
|
2022-03-07 19:53:19 +01:00
|
|
|
preferencesController.setTheme('dark');
|
|
|
|
assert.equal(preferencesController.store.getState().theme, 'dark');
|
|
|
|
});
|
|
|
|
});
|
2023-01-17 16:23:04 +01:00
|
|
|
|
|
|
|
describe('setUseCurrencyRateCheck', function () {
|
|
|
|
it('should default to false', function () {
|
|
|
|
const state = preferencesController.store.getState();
|
|
|
|
assert.equal(state.useCurrencyRateCheck, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set the useCurrencyRateCheck property in state', function () {
|
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().useCurrencyRateCheck,
|
|
|
|
true,
|
|
|
|
);
|
|
|
|
preferencesController.setUseCurrencyRateCheck(false);
|
|
|
|
assert.equal(
|
|
|
|
preferencesController.store.getState().useCurrencyRateCheck,
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|