1
0
Fork 0
mirror of https://github.com/romanz/electrs.git synced 2025-02-23 22:56:55 +01:00

Remove eprintln in tests

This commit is contained in:
Roman Zeyde 2021-06-29 14:59:08 +03:00
parent d4134113cb
commit 94f0afaf85

View file

@ -106,7 +106,6 @@ mod tests {
.join("tests")
.join("blocks")
.join(block_hash_hex);
eprintln!("{:?}", path);
let data = std::fs::read(path).unwrap();
let block: Block = deserialize(&data).unwrap();
block.txdata.iter().map(|tx| tx.txid()).collect()