diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fc408df2..b27595ff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ The minor version will be incremented upon a breaking change and the patch versi - syn: Remove `bpf` target support in `hash` feature ([#3078](https://github.com/coral-xyz/anchor/pull/3078)). - client: Add `tokio` support to `RequestBuilder` with `async` feature ([#3057](https://github.com/coral-xyz/anchor/pull/3057])). +- lang: Remove `EventData` trait ([#3083](https://github.com/coral-xyz/anchor/pull/3083])). ## [0.30.1] - 2024-06-20 diff --git a/lang/src/lib.rs b/lang/src/lib.rs index 8aa65e49b..2cff0a2e7 100644 --- a/lang/src/lib.rs +++ b/lang/src/lib.rs @@ -300,14 +300,6 @@ pub trait Event: AnchorSerialize + AnchorDeserialize + Discriminator { fn data(&self) -> Vec; } -// The serialized event data to be emitted via a Solana log. -// TODO: remove this on the next major version upgrade. -#[doc(hidden)] -#[deprecated(since = "0.4.2", note = "Please use Event instead")] -pub trait EventData: AnchorSerialize + Discriminator { - fn data(&self) -> Vec; -} - /// 8 byte unique identifier for a type. pub trait Discriminator { const DISCRIMINATOR: [u8; 8];