From 2fee0edabba069450f4eecfecfcbade845183a58 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Tue, 17 Jun 2025 13:23:54 +0200 Subject: [PATCH 1/2] Update register_payee.rs Signed-off-by: kilavvy <140459108+kilavvy@users.noreply.github.com> --- crates/relayer-cli/src/commands/fee/register_payee.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/relayer-cli/src/commands/fee/register_payee.rs b/crates/relayer-cli/src/commands/fee/register_payee.rs index 4c43917b4c..eb5264342f 100644 --- a/crates/relayer-cli/src/commands/fee/register_payee.rs +++ b/crates/relayer-cli/src/commands/fee/register_payee.rs @@ -103,7 +103,7 @@ mod tests { use ibc_relayer_types::core::ics24_host::identifier::{ChainId, ChannelId, PortId}; #[test] - fn test_regiser_payee() { + fn test_register_payee() { assert_eq!( RegisterPayeeCmd { chain_id: ChainId::from_string("chain_a"), @@ -125,7 +125,7 @@ mod tests { ) } #[test] - fn test_regiser_payee_alias() { + fn test_register_payee_alias() { assert_eq!( RegisterPayeeCmd { chain_id: ChainId::from_string("chain_a"), From 635bdcbf42cccf84ac86ad3604b2eb14915786f2 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Tue, 17 Jun 2025 13:24:25 +0200 Subject: [PATCH 2/2] Update adr-003-handler-implementation.md Signed-off-by: kilavvy <140459108+kilavvy@users.noreply.github.com> --- docs/architecture/adr-003-handler-implementation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture/adr-003-handler-implementation.md b/docs/architecture/adr-003-handler-implementation.md index dc78a0f56d..958954a8f1 100644 --- a/docs/architecture/adr-003-handler-implementation.md +++ b/docs/architecture/adr-003-handler-implementation.md @@ -578,7 +578,7 @@ where ``` With this boilerplate out of way, one can write tests using a mock client, and associated mock datatypes -in a fairly straightforward way, taking advantage of the `From` instance to lift concerete mock datatypes +in a fairly straightforward way, taking advantage of the `From` instance to lift concrete mock datatypes into the `Any...` enumeration: ```rust