penumbra-zone / cuiloa

Block explorer for the Penumbra Zone network
https://cuiloa.testnet.penumbra.zone
Apache License 2.0
6 stars 1 forks source link

Fix decoding client state for transactions containing `update_client' ABCI events #80

Closed ejmg closed 3 weeks ago

ejmg commented 3 months ago

Summary

App currently throws a runtime error when attempting to decode any IBC Client updates and this should be fixed.

Description

As of now, any Transaction that contains IBC Client updates cannot be decoded by current protobuf schema handling. This is because of an internal Any schema decoding error that inevitably gets thrown by the TxResult decoder. This has occurred with anything containing an internalMsgCreateClient protobuf schema (e.g. create_client ABCI events) but occurs with other IBC Client related transactions.

This can probably be fixed by one of the following:

ejmg commented 3 weeks ago

Closed by #104