-
Notifications
You must be signed in to change notification settings - Fork 107
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
Polkadot SDK Update V2 #972
Conversation
5cfa24d
to
389a2ee
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #972 +/- ##
==========================================
+ Coverage 81.15% 82.20% +1.04%
==========================================
Files 47 47
Lines 1916 2029 +113
Branches 71 71
==========================================
+ Hits 1555 1668 +113
Misses 345 345
Partials 16 16
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
0c56e96
to
804c801
Compare
Smoke tests status:
|
cd463df
to
ed48eb5
Compare
@@ -164,7 +157,7 @@ impl SendXcm for MockXcmSender { | |||
match dest { | |||
Some(MultiLocation { interior, .. }) => { | |||
if let X1(Parachain(1001)) = interior { | |||
return Err(XcmpSendError::NotApplicable) | |||
return Err(XcmpSendError::NotApplicable); |
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.
Are you sure your formatting settings are correct?
Both of my formatter's are not making this change:
cargo +$RUST_NIGHTLY_VERSION fmt
"rust-analyzer.rustfmt.overrideCommand": [
"rustup",
"run",
"nightly-2023-05-23",
"--",
"rustfmt",
"--"
],
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.
Apologies, I had trouble with my local setup where the formatter didn't work in the polkadot-sdk
submodule, so I turned it off temporarily but forgot to turn it back in. Fixed in Fixed in cc9b1fc..
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 like your formatter is acting weird again, for example in in pallets/ethereum-beacon-client/src/lib.rs
😄
b27ed8b
to
1015974
Compare
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.
Nice work! Lets merge it in... 🚀
Companion: Snowfork/polkadot-sdk#3
Fixes: SNO-707