-
Notifications
You must be signed in to change notification settings - Fork 104
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 invalid dest fee #1148
Fix invalid dest fee #1148
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1148 +/- ##
==========================================
+ Coverage 78.81% 78.92% +0.10%
==========================================
Files 13 13
Lines 406 408 +2
Branches 73 74 +1
==========================================
+ Hits 320 322 +2
Misses 69 69
Partials 17 17
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
contracts/src/Assets.sol
Outdated
@@ -23,6 +23,7 @@ library Assets { | |||
error InvalidDestination(); | |||
error TokenNotRegistered(); | |||
error Unsupported(); | |||
error InvalidDestFee(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
error InvalidDestFee(); | |
error InvalidDestinationFee(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! One minor comment about naming.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
Fix for https://bridgehub-rococo.stg.subscan.io/extrinsic/2583529-2
Requires: Snowfork/polkadot-sdk#119