Skip to content

Commit 84d501b

Browse files
Copilot fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 84da746 commit 84d501b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/src/bdk_client/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ macro_rules! impl_async_client_check_expected_server_version {
119119
pub async fn check_expected_server_version(&self) -> Result<()> {
120120
let server_version = self.server_version().await?;
121121
if !$expected_versions.contains(&server_version) {
122-
return Err($crate::client_async::error::UnexpectedServerVersionError {
122+
return Err($crate::bdk_client::error::UnexpectedServerVersionError {
123123
got: server_version,
124124
expected: $expected_versions.to_vec(),
125125
})?;

0 commit comments

Comments
 (0)