diff options
| author | Riccardo Spagni <ric@spagni.net> | 2015-10-30 19:11:13 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2015-10-30 19:11:17 +0200 |
| commit | 466706f695c60d67af9a2de417a6cd0e95c13215 (patch) | |
| tree | 4f86d9fb16db3437e9b3835b37e0bd11c44a8155 | |
| parent | 5978fc18f709d183be38ded63c0159768094c0a8 (diff) | |
| parent | 5f8baba26e8e9c8e7f1565a9d4f433d31470bea0 (diff) | |
| download | monzero-core-466706f695c60d67af9a2de417a6cd0e95c13215.tar.gz monzero-core-466706f695c60d67af9a2de417a6cd0e95c13215.tar.xz monzero-core-466706f695c60d67af9a2de417a6cd0e95c13215.zip | |
Merge pull request #465
5f8baba wallet2: fix CLANG compile error (moneromooo-monero)
| -rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 167325525..a068dfbf3 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -396,7 +396,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); } //---------------------------------------------------------------------------------------------------- |
