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
Add a decode() function that mimics the abci::CheckTx method similar to the deliver() function.
Problem Definition
This would be useful for ABCI applications to determine whether the incoming messages are valid IBC messages.
Proposal
Extract parts of the deliver() function into a separate function that decodes the prost message into a domain type.
Acceptance Criteria
Provide a function that can be used to check if incoming transaction messages are valid IBC messages, and reuse this function in the deliver() function.
Crate
ibc
Summary
Add a
decode()
function that mimics theabci::CheckTx
method similar to the deliver() function.Problem Definition
This would be useful for ABCI applications to determine whether the incoming messages are valid IBC messages.
Proposal
Extract parts of the deliver() function into a separate function that decodes the prost message into a domain type.
Acceptance Criteria
Provide a function that can be used to check if incoming transaction messages are valid IBC messages, and reuse this function in the
deliver()
function.Might also be nice to have
impl TryFrom<Any> for Ics26Envelope
.For Admin Use
The text was updated successfully, but these errors were encountered: