I'm building a Golang client that interfaces with Polkadot and I want to better understand lookup errors.
In Polkadot block 10572717 the extrinsic at index 2 (subscan link 10572712-2) has failed with the Result "Failed (CannotLookup)".
It appears that the Extrinsic (which has the call Balances.Transfer_keep_alive) fails because of an invalid Destination identity: 0xE31Ad96c37604983899861ff171D7F51Ae074D81. It looks like the sender tried (and failed) repeatedly to send to this invalid account ID.
- Is
0xE31Ad96c37604983899861ff171D7F51Ae074D81an invalid Destination identifier in Polkadot/Substrate? - Is this the reason why the Extrinsic 10572717-2 failed?
- If I'm interested in balance transfer Extrinsics - I want to track account balances in our system - is it safe to ignore Failed results like this?
Thanks in advance