Skip to content

Commit 2e523b3

Browse files
fix: revert bsc send many
Ticket: COIN-5433
1 parent 422c241 commit 2e523b3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

modules/statics/src/coinFeatures.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,6 @@ export const BSC_FEATURES = [
263263
CoinFeature.CUSTODY_BITGO_FRANKFURT,
264264
CoinFeature.BULK_TRANSACTION,
265265
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
266-
CoinFeature.ERC20_BULK_TRANSACTION,
267266
];
268267
export const BSC_TOKEN_FEATURES = [...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION];
269268
export const BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE = [

modules/statics/test/unit/coins.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1081,14 +1081,17 @@ describe('ERC20 Bulk Transaction Feature', () => {
10811081
'tflr',
10821082
'xdc',
10831083
'txdc',
1084-
'bsc',
1085-
'tbsc',
10861084
];
10871085
erc20BulkTransactionCoins.forEach((coinName) => {
10881086
const coin = coins.get(coinName);
10891087
coin.features.includes(CoinFeature.ERC20_BULK_TRANSACTION).should.eql(true);
10901088
});
10911089
});
1090+
1091+
it('should not have ERC20_BULK_TRANSACTION feature for BSC', () => {
1092+
const coin = coins.get('bsc');
1093+
coin.features.includes(CoinFeature.ERC20_BULK_TRANSACTION).should.eql(false);
1094+
});
10921095
});
10931096

10941097
describe('Custody Bulk Withdrawal Features', () => {

0 commit comments

Comments
 (0)