Add a filter for memo and receiver field size #2210
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
4 errors
type annotations needed:
crates/relayer-types/src/core/ics04_channel/packet.rs#L189
error[E0282]: type annotations needed
--> crates/relayer-types/src/core/ics04_channel/packet.rs:189:40
|
189 | && packet.receiver.as_ref().len() <= max_receiver_size as usize
| ^^^^^^ --- type must be known at this point
|
help: try using a fully qualified path to specify the expected types
|
189 | && <std::string::String as std::convert::AsRef<T>>::as_ref(&packet.receiver).len() <= max_receiver_size as usize
| +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ~
|
type annotations needed:
crates/relayer-types/src/core/ics04_channel/packet.rs#L189
error[E0282]: type annotations needed
--> crates/relayer-types/src/core/ics04_channel/packet.rs:189:40
|
189 | && packet.receiver.as_ref().len() <= max_receiver_size as usize
| ^^^^^^ --- type must be known at this point
|
help: try using a fully qualified path to specify the expected types
|
189 | && <std::string::String as std::convert::AsRef<T>>::as_ref(&packet.receiver).len() <= max_receiver_size as usize
| +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ~
|
type annotations needed:
crates/relayer-types/src/core/ics04_channel/packet.rs#L189
error[E0282]: type annotations needed
--> crates/relayer-types/src/core/ics04_channel/packet.rs:189:40
|
189 | && packet.receiver.as_ref().len() <= max_receiver_size as usize
| ^^^^^^ --- type must be known at this point
|
help: try using a fully qualified path to specify the expected types
|
189 | && <std::string::String as std::convert::AsRef<T>>::as_ref(&packet.receiver).len() <= max_receiver_size as usize
| +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ~
|
type annotations needed:
crates/relayer-types/src/core/ics04_channel/packet.rs#L189
error[E0282]: type annotations needed
--> crates/relayer-types/src/core/ics04_channel/packet.rs:189:40
|
189 | && packet.receiver.as_ref().len() <= max_receiver_size as usize
| ^^^^^^ --- type must be known at this point
|
help: try using a fully qualified path to specify the expected types
|
189 | && <std::string::String as std::convert::AsRef<T>>::as_ref(&packet.receiver).len() <= max_receiver_size as usize
| +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ~
|