From 4e4c04c6e04d3d8ab7c59baa47097c6319790c6b Mon Sep 17 00:00:00 2001 From: cryptopapi997 <38372048+cryptopapi997@users.noreply.github.com> Date: Tue, 23 Jul 2024 13:26:55 +0200 Subject: [PATCH] client: Make `ThreadSafeSigner` trait public (#3107) --- CHANGELOG.md | 1 + client/src/lib.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e60fb48c8..db98afded 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ The minor version will be incremented upon a breaking change and the patch versi - client: Add option to pass in mock rpc client when using anchor_client ([#3053](https://github.com/coral-xyz/anchor/pull/3053)). - lang: Get discriminator length dynamically ([#3101](https://github.com/coral-xyz/anchor/pull/3101)). - lang: Add non-8-byte discriminator support in `declare_program!` ([#3103](https://github.com/coral-xyz/anchor/pull/3103)). +- client: Make `ThreadSafeSigner` trait public ([#3107](https://github.com/coral-xyz/anchor/pull/3107)). ### Fixes diff --git a/client/src/lib.rs b/client/src/lib.rs index 6a5e8eb64..59d21e699 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -101,6 +101,8 @@ use tokio::{ pub use anchor_lang; pub use cluster::Cluster; +#[cfg(feature = "async")] +pub use nonblocking::ThreadSafeSigner; pub use solana_client; pub use solana_sdk;