From 99c55dbec3affe0768bdcff2fc047ef54d5a1926 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Tue, 25 Jan 2022 19:04:45 +0000 Subject: [PATCH] Export BanksClientError (#22715) (#22732) (cherry picked from commit f366e0f89039a040b8b8b62f7e9ffd0b03cdf9af) Co-authored-by: Tyera Eulberg --- banks-client/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/banks-client/src/lib.rs b/banks-client/src/lib.rs index f1ab272931..dbe2495146 100644 --- a/banks-client/src/lib.rs +++ b/banks-client/src/lib.rs @@ -5,9 +5,9 @@ //! but they are undocumented, may change over time, and are generally more //! cumbersome to use. +pub use crate::error::BanksClientError; pub use solana_banks_interface::{BanksClient as TarpcClient, TransactionStatus}; use { - crate::error::BanksClientError, borsh::BorshDeserialize, futures::{future::join_all, Future, FutureExt, TryFutureExt}, solana_banks_interface::{BanksRequest, BanksResponse, BanksTransactionResultWithSimulation},