Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changelog/unreleased/testing/3857-batch-events-tests.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Added testing for batched tx events.
([\#3857](https://github.com/anoma/namada/pull/3857))
14 changes: 0 additions & 14 deletions crates/events/src/extend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -542,20 +542,6 @@ impl EventAttributeEntry<'static> for MaspDataRefs {
}
}

/// Extend an [`Event`] with success data.
pub struct Success(pub bool);

impl EventAttributeEntry<'static> for Success {
type Value = bool;
type ValueOwned = Self::Value;

const KEY: &'static str = "success";

fn into_value(self) -> Self::Value {
self.0
}
}

/// Extend an [`Event`] with a new domain.
pub struct Domain<E>(PhantomData<E>);

Expand Down
Loading