From 64ec3c341452f6c4098d0fe99150d80333e46ed3 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Fri, 30 Oct 2015 14:35:55 +0000 Subject: [PATCH] wallet2: fix CLANG compile error --- src/wallet/wallet2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 2f54af2c9..3776b44c4 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -450,7 +450,7 @@ void wallet2::pull_blocks(uint64_t start_height, uint64_t& blocks_added) //---------------------------------------------------------------------------------------------------- void wallet2::refresh() { - size_t blocks_fetched = 0; + uint64_t blocks_fetched = 0; refresh(0, blocks_fetched); } //----------------------------------------------------------------------------------------------------