Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: handle vote on bulk deposit for #2

Merged
merged 4 commits into from
Mar 6, 2024

Conversation

nxqbao
Copy link
Contributor

@nxqbao nxqbao commented Mar 5, 2024

Description

https://www.notion.so/skymavis/Bridge-Issues-7fb1ed7fbfbb45f6a5bf54451f2fe07f?pvs=4#aaf4801dc1fe4a38b38000087504c3eb

Checklist

  • I have clearly commented on all the main functions following the NatSpec Format
  • The box that allows repo maintainers to update this PR is checked
  • I tested locally to make sure this feature/fix works

@nxqbao nxqbao force-pushed the fix/handle-vote-on-bulkDepositFor branch from 21e226c to ba7c838 Compare March 5, 2024 15:13
Comment on lines +193 to +197
_executedReceipts = new bool[](receipts.length);
uint256 minVoteWeight = minimumVoteWeight();

Transfer.Receipt memory iReceipt;
for (uint i; i < receipts.length; ++i) {
Copy link
Collaborator

@huyhuynh3103 huyhuynh3103 Mar 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
_executedReceipts = new bool[](receipts.length);
uint256 minVoteWeight = minimumVoteWeight();
Transfer.Receipt memory iReceipt;
for (uint i; i < receipts.length; ++i) {
uint256 length = receipts.length;
_executedReceipts = new bool[](length);
uint256 minVoteWeight = minimumVoteWeight();
Transfer.Receipt memory iReceipt;
for (uint i; i < length; ++i) {

Copy link
Collaborator

@huyhuynh3103 huyhuynh3103 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Co-authored-by: HuyHuynh <[email protected]>
Signed-off-by: Bao <[email protected]>
@nxqbao nxqbao force-pushed the fix/handle-vote-on-bulkDepositFor branch from bac2f15 to 1274c9c Compare March 6, 2024 03:12
@nxqbao nxqbao merged commit 1be539e into release/v3.1.0 Mar 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants