Skip to content

Commit 907677f

Browse files
committed
fmt
1 parent 14494e1 commit 907677f

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

src/builder.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ use lightning::routing::scoring::{
4646
use lightning::sign::EntropySource;
4747

4848
use lightning::util::persist::{
49-
CHANNEL_MANAGER_PERSISTENCE_KEY,
50-
CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE, CHANNEL_MANAGER_PERSISTENCE_SECONDARY_NAMESPACE,
49+
CHANNEL_MANAGER_PERSISTENCE_KEY, CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE,
50+
CHANNEL_MANAGER_PERSISTENCE_SECONDARY_NAMESPACE,
5151
};
5252
use lightning::util::ser::ReadableArgs;
5353
use lightning::util::sweep::OutputSweeper;

src/io/test_utils.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
// accordance with one or both of these licenses.
77

88
use lightning::ln::functional_test_utils::{
9-
connect_block, create_announced_chan_between_nodes, create_chanmon_cfgs, create_dummy_block,
10-
create_network, create_node_cfgs, create_node_chanmgrs, send_payment, check_closed_event,
9+
check_closed_event, connect_block, create_announced_chan_between_nodes, create_chanmon_cfgs,
10+
create_dummy_block, create_network, create_node_cfgs, create_node_chanmgrs, send_payment,
11+
};
12+
use lightning::util::persist::{
13+
KVStore, MonitorName, MonitorUpdatingPersister,
14+
CHANNEL_MONITOR_UPDATE_PERSISTENCE_PRIMARY_NAMESPACE, KVSTORE_NAMESPACE_KEY_MAX_LEN,
1115
};
12-
use lightning::util::persist::{MonitorUpdatingPersister, MonitorName, KVStore, CHANNEL_MONITOR_UPDATE_PERSISTENCE_PRIMARY_NAMESPACE, KVSTORE_NAMESPACE_KEY_MAX_LEN};
1316

1417
use lightning::events::ClosureReason;
1518
use lightning::util::test_utils;

src/types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use lightning::routing::gossip;
2323
use lightning::routing::router::DefaultRouter;
2424
use lightning::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
2525
use lightning::sign::InMemorySigner;
26-
use lightning::util::persist::{MonitorUpdatingPersister, KVStore};
26+
use lightning::util::persist::{KVStore, MonitorUpdatingPersister};
2727
use lightning::util::ser::{Readable, Writeable, Writer};
2828
use lightning::util::sweep::OutputSweeper;
2929

0 commit comments

Comments
 (0)