We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab9dff9 commit 4ec8d37Copy full SHA for 4ec8d37
packages/std/src/ibc.rs
@@ -623,18 +623,6 @@ pub struct IbcReceiveResponse<T = Empty> {
623
pub events: Vec<Event>,
624
}
625
626
-// Custom implementation in order to implement it for all `T`, even if `T` is not `Default`.
627
-impl<T> Default for IbcReceiveResponse<T> {
628
- fn default() -> Self {
629
- IbcReceiveResponse {
630
- acknowledgement: Binary::default(),
631
- messages: vec![],
632
- attributes: vec![],
633
- events: vec![],
634
- }
635
636
-}
637
-
638
impl<T> IbcReceiveResponse<T> {
639
/// Create a new response with the given acknowledgement.
640
///
0 commit comments