aboutsummaryrefslogtreecommitdiffstats
path: root/dagger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dagger.cpp')
-rw-r--r--dagger.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/dagger.cpp b/dagger.cpp
index 1a31f8a3..cc22baa1 100644
--- a/dagger.cpp
+++ b/dagger.cpp
@@ -31,16 +31,16 @@ int daggerTest()
// Test dagger
{
auto s = steady_clock::now();
- cout << hex << Dagger().eval((h256)1, (h256)0);
+ cout << hex << Dagger().eval((h256)(u256)1, (h256)(u256)0);
cout << " " << dec << duration_cast<milliseconds>(steady_clock::now() - s).count() << " ms" << endl;
- cout << hex << Dagger().eval((h256)1, (h256)1);
+ cout << hex << Dagger().eval((h256)(u256)1, (h256)(u256)1);
cout << " " << dec << duration_cast<milliseconds>(steady_clock::now() - s).count() << " ms" << endl;
}
{
auto s = steady_clock::now();
- cout << hex << Dagger().eval((h256)1, (h256)0);
+ cout << hex << Dagger().eval((h256)(u256)1, (h256)(u256)0);
cout << " " << dec << duration_cast<milliseconds>(steady_clock::now() - s).count() << " ms" << endl;
- cout << hex << Dagger().eval((h256)1, (h256)1);
+ cout << hex << Dagger().eval((h256)(u256)1, (h256)(u256)1);
cout << " " << dec << duration_cast<milliseconds>(steady_clock::now() - s).count() << " ms" << endl;
}
return 0;