client: Make `ThreadSafeSigner` trait public (#3107)

This commit is contained in:
cryptopapi997 2024-07-23 13:26:55 +02:00 committed by GitHub
parent e5bed20736
commit 4e4c04c6e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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;