Skip to content

Commit 8c46f24

Browse files
Merge pull request #6935 from BitGo/revert-6833-feat/COIN-5433-revert-bsc-send-many
Revert "fix: revert bsc send many"
2 parents e378179 + ad50029 commit 8c46f24

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

modules/statics/src/coinFeatures.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@ export const BSC_FEATURES = [
269269
CoinFeature.CUSTODY_BITGO_FRANKFURT,
270270
CoinFeature.BULK_TRANSACTION,
271271
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
272+
CoinFeature.ERC20_BULK_TRANSACTION,
272273
];
273274
export const BSC_TOKEN_FEATURES = [...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION];
274275
export const BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE = [

modules/statics/test/unit/coins.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1080,17 +1080,14 @@ describe('ERC20 Bulk Transaction Feature', () => {
10801080
'tflr',
10811081
'xdc',
10821082
'txdc',
1083+
'bsc',
1084+
'tbsc',
10831085
];
10841086
erc20BulkTransactionCoins.forEach((coinName) => {
10851087
const coin = coins.get(coinName);
10861088
coin.features.includes(CoinFeature.ERC20_BULK_TRANSACTION).should.eql(true);
10871089
});
10881090
});
1089-
1090-
it('should not have ERC20_BULK_TRANSACTION feature for BSC', () => {
1091-
const coin = coins.get('bsc');
1092-
coin.features.includes(CoinFeature.ERC20_BULK_TRANSACTION).should.eql(false);
1093-
});
10941091
});
10951092

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

0 commit comments

Comments
 (0)