Skip to content

Commit 9329f4b

Browse files
fix: enable bulk processing on arbitrum-mainnet
1 parent a72f1e6 commit 9329f4b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/common/utils/config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ const networkConfigs = [
128128
CHAIN_SPECIFIC_FEATURES.WORKERPOOL_API_URL_REGISTRATION,
129129
CHAIN_SPECIFIC_FEATURES.VOUCHER,
130130
CHAIN_SPECIFIC_FEATURES.XRLC_BRIDGE,
131-
CHAIN_SPECIFIC_FEATURES.BULK_PROCESSING,
132131
],
133132
},
134133
];

test/lib/unit/config.test.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,7 @@ describe('checkImplementedOnChain', () => {
179179
);
180180
});
181181
test('is not implemented on arbitrum-mainnet', () => {
182-
expect(() => checkImplementedOnChain(42161, feature)).toThrow(
183-
`${feature} is not available on network arbitrum-mainnet`,
184-
);
182+
expect(() => checkImplementedOnChain(42161, feature)).not.toThrow();
185183
});
186184
test('is implemented on arbitrum-sepolia-testnet', () => {
187185
expect(() => checkImplementedOnChain(421614, feature)).not.toThrow();

0 commit comments

Comments
 (0)