Skip to content

Commit

Permalink
add more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
quasisamurai committed Sep 24, 2024
1 parent adaf55a commit 08f6d33
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/testcases/run_in_band/rate_limit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,10 @@ describe('Neutron / IBC transfer', () => {
expect(res.rawLog).contains('IBC Rate Limit exceeded');
});
});


Check failure on line 360 in src/testcases/run_in_band/rate_limit.test.ts

View workflow job for this annotation

GitHub Actions / Actions - lint

Delete `⏎`
// Note: we haven't unset the limit afterwards, instead we've removed rate limiting contract from params.
// ibc send afterwards should work because rate-limiting MW action is completely removed from the ibc stack
describe('Remove RL contract from neutron', () => {
const proposalId = 2;
test('create proposal', async () => {
Expand All @@ -378,7 +382,6 @@ describe('Neutron / IBC transfer', () => {
test('execute passed proposal', async () => {
await daoMember1.executeProposalWithAttempts(proposalId);
});
// Note: we haven't unset the limit afterwards, instead we've removed rate limiting contract from params
// and here we just tests if ibc send works
test('perform IBC send after removig of contract: should be fine', async () => {
const res = await neutronClient.signAndBroadcast(
Expand Down

0 comments on commit 08f6d33

Please sign in to comment.