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
Right now, ExtrinsicSuccess[data['paysFee']] = False for all extrinsics because paritytech/substrate#5733 changed pays_fee from bool to enum Pays { Yes, No } and since Yes decodes to 0, it reads as False. Update the parsing of this event to display correctly.
Example extrinsic (see extrinsic.events.5.data.paysFee):
Right now,
ExtrinsicSuccess[data['paysFee']] = False
for all extrinsics because paritytech/substrate#5733 changedpays_fee
from bool toenum Pays { Yes, No }
and sinceYes
decodes to0
, it reads asFalse
. Update the parsing of this event to display correctly.Example extrinsic (see
extrinsic.events.5.data.paysFee
):The text was updated successfully, but these errors were encountered: