mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
Use prelude by universal import, rather than single import
This avoids the bindings trying to figure out what a `lightning::prelude::Vec` is rather than matching it as a `Vec`.
This commit is contained in:
parent
58febc36d1
commit
5c21ee98a8
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ use crate::chain::{self, BestBlock, Confirm, Filter, Listen, WatchedOutput};
|
|||
use crate::io;
|
||||
use crate::ln::msgs::DecodeError;
|
||||
use crate::ln::types::ChannelId;
|
||||
use crate::prelude::Vec;
|
||||
use crate::prelude::*;
|
||||
use crate::sign::{ChangeDestinationSource, OutputSpender, SpendableOutputDescriptor};
|
||||
use crate::sync::Mutex;
|
||||
use crate::util::logger::Logger;
|
||||
|
|
Loading…
Add table
Reference in a new issue