Remove dependency bincode

This commit is contained in:
Dominik Werder
2022-11-22 13:27:06 +01:00
parent 06e21bc21f
commit 8d205a7fa7
7 changed files with 295 additions and 207 deletions

View File

@@ -142,7 +142,7 @@ pub async fn get_binned(
}
},
Err(e) => {
error!("len {} bincode error {:?}", n1, e);
error!("len {} {:?}", n1, e);
Some(Err(e.into()))
}
}

View File

@@ -216,7 +216,7 @@ where
}
},
Err(e) => {
error!("bincode error: {:?}", e);
error!("{:?}", e);
Some(Err(e.into()))
}
}

View File

@@ -187,7 +187,7 @@ where
}
},
Err(e) => {
error!("bincode error: {:?}", e);
error!("{:?}", e);
Some(Err(e.into()))
}
}