Fix use statement order

Max Brunsfeld created

Change summary

crates/rpc/src/rpc.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/rpc/src/rpc.rs 🔗

@@ -5,8 +5,8 @@ mod peer;
 pub mod proto;
 
 pub use conn::Connection;
-pub use peer::*;
 pub use notification::*;
+pub use peer::*;
 mod macros;
 
 pub const PROTOCOL_VERSION: u32 = 64;