From 397fd495f69d5fd9a3924b5274600314e21d0b22 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Sat, 8 Feb 2014 17:11:23 +0000 Subject: [PATCH] No fees for miners. --- dagger.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dagger.cpp b/dagger.cpp index 97e575a68..efc635659 100644 --- a/dagger.cpp +++ b/dagger.cpp @@ -32,17 +32,17 @@ int daggerTest() { Dagger d; auto s = steady_clock::now(); - cout << hex << d.eval((h256)1, 0); + cout << hex << d.eval((h256)1, (h256)0); cout << " " << dec << duration_cast(steady_clock::now() - s).count() << " ms" << endl; - cout << hex << d.eval((h256)1, 1); + cout << hex << d.eval((h256)1, (h256)1); cout << " " << dec << duration_cast(steady_clock::now() - s).count() << " ms" << endl; } { Dagger d; auto s = steady_clock::now(); - cout << hex << d.eval((h256)1, 0); + cout << hex << d.eval((h256)1, (h256)0); cout << " " << dec << duration_cast(steady_clock::now() - s).count() << " ms" << endl; - cout << hex << d.eval((h256)1, 1); + cout << hex << d.eval((h256)1, (h256)1); cout << " " << dec << duration_cast(steady_clock::now() - s).count() << " ms" << endl; } return 0;