From 86df371a727def10fc3ef170026a73a89f383d66 Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Tue, 12 Jul 2016 12:20:43 +0200 Subject: [PATCH] dots on same line --- ethcore/src/migrations/state/v7.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethcore/src/migrations/state/v7.rs b/ethcore/src/migrations/state/v7.rs index 57f7d97a8..a69eecb2d 100644 --- a/ethcore/src/migrations/state/v7.rs +++ b/ethcore/src/migrations/state/v7.rs @@ -74,7 +74,7 @@ impl SimpleMigration for ArchiveV7 { self.0 += 1; if self.0 == 100_000 { self.0 = 0; - println!("."); + flush!("."); } if key.len() != 32 { @@ -240,7 +240,7 @@ impl Migration for OverlayRecentV7 { count += 1; if count == 100_000 { count = 0; - println!("."); + flush!("."); } let mut key = key.into_vec();