There are two possible options for how to deal with this case: either treat it as a NOOP (so allowance remains unchanged) or as a regular operation (thus updating the allowance). Should both be allowed? The informal spec is not clear on this.
Designs
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related or that one is blocking others.
Learn more.
I agree it should be specified more precisely. I propose to disallow that, but I don't have a strong reason for that, just my personal preference. I. e. state that when from address equals to SENDER allowance MUST NOT (or SHOULD NOT?) be modified.
By the way, this also appears in the %approve entrypoint: in the case when sender = spender, do we allow an implementation that nevertheless updates the allowance (of an account for itself) and can thus even fail when this entrypoint is called?
ManagedLedger implementation included in this repo currently treats from == to case as special and never consumes allowance in this case. We had some discussions about that few months ago and concluded that:
There is no good reason to keep this case as special, and treating it as special adds a slight overhead.
FA1.2 says "In this case current number of tokens that sender is allowed to withdraw from the "from" address is decreased by the number of transferred tokens". It doesn't say anything about special treatment of the from == to case, so allowance should be decreased in this case.
It's indeed a bit unclear and specified imprecisely.
We have an old MR that updates ManagedLedger implementation to treat from == to as an ordinary case (and consume allowance). I propose to update FA1.2 to clearly state that allowance should be consumed in this case to remove ambiguity. I can do it, unless someone has a strong reason to do something different.
@ksojakova to give you an estimate when it will be done: we had some urgent stuff to do this week, I think we'll start working on FA1.2 issues next week and I hope they won't take long.