Skip to content

Commit

Permalink
Remove wrong 'cfg()'
Browse files Browse the repository at this point in the history
maybe_async is used regardless of which feature is activated, so
it shouldn't be behind the cfg()
  • Loading branch information
danielabrozzoni committed Aug 24, 2022
1 parent d8e93ab commit e93bdbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ use bdk::{
feature = "compact_filters",
feature = "rpc"
))]
use bdk_macros::{maybe_async, maybe_await};
use bdk_macros::maybe_await;
use bdk_macros::maybe_async;
#[cfg(feature = "reserves")]
use bdk_reserves::reserves::verify_proof;
#[cfg(feature = "reserves")]
Expand Down

0 comments on commit e93bdbe

Please sign in to comment.