do the one 0x

This commit is contained in:
dr-frmr 2023-12-21 15:14:11 -05:00
parent 763e7d6d87
commit 2c85baa634
No known key found for this signature in database

View File

@ -298,7 +298,7 @@ fn main(our: Address, mut state: State) -> anyhow::Result<()> {
let routers_raw = decoded.0;
node.routers = routers_raw
.iter()
.map(|r| hex::encode(r))
.map(|r| format!("0x{}", hex::encode(r)))
.collect::<Vec<String>>();
send = true;
}