Skip to content

Commit

Permalink
minor refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
sirarthurmoney committed Nov 7, 2023
1 parent 5860b65 commit 5bc2958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/token/oft/v2/fee/NativeOFTWithFee.sol
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ contract NativeOFTWithFee is OFTWithFee, ReentrancyGuard {
_transferFrom(_from, feeOwner, fee);
} else {
_mint(feeOwner, fee);
newMsgValue = msg.value - fee;
newMsgValue -= fee;
}
}

Expand Down

0 comments on commit 5bc2958

Please sign in to comment.