Skip to content

Commit 867d5df

Browse files
Merge pull request #8229 from BitGo/CECHO-284
2 parents 1ea91f3 + 4f274d0 commit 867d5df

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

modules/statics/src/coinFeatures.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,8 +553,6 @@ export const ZKSYNCERA_FEATURES = [
553553
CoinFeature.SUPPORTS_ERC20,
554554
CoinFeature.EVM_NON_BITGO_RECOVERY,
555555
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
556-
CoinFeature.MULTISIG_COLD,
557-
CoinFeature.MULTISIG,
558556
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
559557
CoinFeature.ETH_ROLLUP_CHAIN,
560558
];

modules/statics/test/unit/coins.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,16 +1376,14 @@ describe('create token map using config details', () => {
13761376
CoinFeature.SUPPORTS_ERC20,
13771377
CoinFeature.EVM_NON_BITGO_RECOVERY,
13781378
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
1379-
CoinFeature.MULTISIG_COLD,
1380-
CoinFeature.MULTISIG,
13811379
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
13821380
CoinFeature.ETH_ROLLUP_CHAIN,
13831381
]);
13841382
});
13851383

1386-
it('should have TSS_COLD feature for zksyncera (both multisig and tss cold)', function () {
1384+
it('should have TSS_COLD but not MULTISIG_COLD for zksyncera (tss cold only)', function () {
13871385
const coin = coins.get('zksyncera');
1388-
coin.features.includes(CoinFeature.MULTISIG_COLD).should.equal(true);
1386+
coin.features.includes(CoinFeature.MULTISIG_COLD).should.equal(false);
13891387
coin.features.includes(CoinFeature.TSS_COLD).should.equal(true);
13901388
});
13911389
});

modules/statics/test/unit/fixtures/expectedColdFeatures.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ export const expectedColdFeatures = {
1313
'tsoneium',
1414
'flr',
1515
'tflr',
16-
'zksyncera',
17-
'tzksyncera',
1816
],
1917
justMultiSig: [
2018
'algo',
@@ -213,6 +211,8 @@ export const expectedColdFeatures = {
213211
'tkavaevm',
214212
'twemix',
215213
'tzeta',
214+
'tzksyncera',
215+
'zksyncera',
216216
'toas',
217217
'ton',
218218
'tseievm',

0 commit comments

Comments
 (0)