Skip to content

Commit

Permalink
Merge pull request #22 from DODOEX/add-mtFeeEvent
Browse files Browse the repository at this point in the history
fix: WithdrawMtfee event
  • Loading branch information
Attens1423 authored Jul 23, 2024
2 parents 2fe634a + 1ed0b44 commit 78ae371
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ cache/
out/

node_modules
broadcast

coverage/
coverage.json
Expand Down
4 changes: 2 additions & 2 deletions contracts/GasSavingPool/impl/GSPVault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ contract GSPVault is GSPStorage {
_MT_FEE_BASE_ = 0;
_transferBaseOut(_MAINTAINER_, mtFeeBase);

emit WithdrawMtFee(_QUOTE_TOKEN_, mtFeeQuote);
emit WithdrawMtFee(_BASE_TOKEN_, mtFeeBase);
emit WithdrawMtFee(address(_QUOTE_TOKEN_), mtFeeQuote);
emit WithdrawMtFee(address(_BASE_TOKEN_), mtFeeBase);
}

// ============ Shares (ERC20) ============
Expand Down

0 comments on commit 78ae371

Please sign in to comment.