Open gupnik opened 2 days ago
I've noticed that even adding #[pallet::weight((0, Pays::No))]
results in the same error, that hints at dropping balance below ED:
the account does not have enough free funds (excluding locked/bonded/reserved) available to cover the transaction fees without dropping the balance below the account existential amount.
While testing
#[pallet::feeless_if(...)]
macro: I've discovered that even though the fees are not charged when transaction goes through, I'm not able to submit a transaction if the balance is low (zero):code: ServerError(1010), message: "Invalid Transaction", data: Some(RawValue("Inability to pay some fees (e.g. account balance too low)"
CC: @ordian