Skip to content

Commit e9059e0

Browse files
committed
fix no_std
1 parent 2a3c25a commit e9059e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/routing/network_graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ impl Writeable for NodeId {
9494
}
9595

9696
impl Readable for NodeId {
97-
fn read<R: ::std::io::Read>(reader: &mut R) -> Result<NodeId, DecodeError> {
97+
fn read<R: io::Read>(reader: &mut R) -> Result<NodeId, DecodeError> {
9898
let mut buf = [0; 33];
9999
reader.read_exact(&mut buf)?;
100100
Ok(NodeId(buf))

0 commit comments

Comments
 (0)