Rename `blinded_route` variables and module to `blinded_path`
[rust-lightning] / lightning / src / onion_message / mod.rs
index 289773653a39796eaf426e0fc460a550d4a700ad..f8ecf7de8f79c406918e4df681bc972aaa7fe31f 100644 (file)
@@ -20,7 +20,7 @@
 //! [offers]: <https://github.com/lightning/bolts/pull/798>
 //! [blinded routes]: crate::onion_message::BlindedPath
 
-mod blinded_route;
+mod blinded_path;
 mod messenger;
 mod packet;
 mod utils;
@@ -28,6 +28,6 @@ mod utils;
 mod functional_tests;
 
 // Re-export structs so they can be imported with just the `onion_message::` module prefix.
-pub use self::blinded_route::{BlindedPath, BlindedHop};
+pub use self::blinded_path::{BlindedPath, BlindedHop};
 pub use self::messenger::{CustomOnionMessageContents, CustomOnionMessageHandler, Destination, OnionMessageContents, OnionMessenger, SendError, SimpleArcOnionMessenger, SimpleRefOnionMessenger};
 pub(crate) use self::packet::Packet;