You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the transaction payment module, computeFeeRaw has mismatching types - U128 and FixedU128.
The multiplication bnAdjustedWeightFee := multiplier.Mul(unadjustedWeightFee) should be saturated.
Revisit the logic and check whether an implementation of FixedU128 is needed.
You can find a reference here.
The text was updated successfully, but these errors were encountered:
In the transaction payment module,
computeFeeRaw
has mismatching types -U128
andFixedU128
.The multiplication
bnAdjustedWeightFee := multiplier.Mul(unadjustedWeightFee)
should be saturated.Revisit the logic and check whether an implementation of
FixedU128
is needed.You can find a reference here.
The text was updated successfully, but these errors were encountered: