Skip to content

Commit 1e26048

Browse files
committed
Reorder imports
1 parent 1742784 commit 1e26048

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lightning/src/ln/inbound_payment.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ use bitcoin::hashes::{Hash, HashEngine};
1313
use bitcoin::hashes::cmp::fixed_time_eq;
1414
use bitcoin::hashes::hmac::{Hmac, HmacEngine};
1515
use bitcoin::hashes::sha256::Hash as Sha256;
16-
use crate::sign::{KeyMaterial, EntropySource};
16+
17+
use crate::crypto::chacha20::ChaCha20;
18+
use crate::crypto::utils::hkdf_extract_expand_5x;
1719
use crate::ln::types::{PaymentHash, PaymentPreimage, PaymentSecret};
1820
use crate::ln::msgs;
1921
use crate::ln::msgs::MAX_VALUE_MSAT;
20-
use crate::crypto::chacha20::ChaCha20;
21-
use crate::crypto::utils::hkdf_extract_expand_5x;
22+
use crate::sign::{KeyMaterial, EntropySource};
2223
use crate::util::errors::APIError;
2324
use crate::util::logger::Logger;
2425

0 commit comments

Comments
 (0)