Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Bastian Köcher <[email protected]>
  • Loading branch information
shawntabrizi and bkchr authored Jul 29, 2020
commit 41fbaaf61d301f36c8c85573fe083ff9d044f2b4
4 changes: 2 additions & 2 deletions frame/support/src/weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ impl PostDispatchInfo {
if info.pays_fee == Pays::No || self.pays_fee == Pays::No {
Pays::No
} else {
// Otherwise they pay.
// Otherwise they pay.
Pays::Yes
}
}
Expand Down Expand Up @@ -354,7 +354,7 @@ impl sp_runtime::traits::Printable for PostDispatchInfo {
Some(weight) => weight.print(),
None => "max-weight".print(),
};
" pays_fee=".print();
"pays_fee=".print();
match self.pays_fee {
Pays::Yes => "Yes".print(),
Pays::No => "No".print(),
Expand Down