From e036087db794622e9447514dad0801bf91722dde Mon Sep 17 00:00:00 2001 From: kylezs Date: Wed, 18 Jan 2023 05:41:12 +1100 Subject: [PATCH] Expose `Update` (#791) This will allow for use of `apply_update` on the `OnlineClient` which is already exposed as public. --- subxt/src/client/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/subxt/src/client/mod.rs b/subxt/src/client/mod.rs index 673beee6cd..8ec0d3c78c 100644 --- a/subxt/src/client/mod.rs +++ b/subxt/src/client/mod.rs @@ -20,5 +20,6 @@ pub use online_client::{ OnlineClient, OnlineClientT, RuntimeUpdaterStream, + Update, UpgradeError, };