aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/has160/has160.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/has160/has160.cpp')
-rw-r--r--src/hash/has160/has160.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/has160/has160.cpp b/src/hash/has160/has160.cpp
index 4f8db53f7..72246a845 100644
--- a/src/hash/has160/has160.cpp
+++ b/src/hash/has160/has160.cpp
@@ -144,7 +144,7 @@ void HAS_160::compress_n(const byte input[], size_t blocks)
*/
void HAS_160::copy_out(byte output[])
{
- for(size_t i = 0; i != OUTPUT_LENGTH; i += 4)
+ for(size_t i = 0; i != output_length(); i += 4)
store_le(digest[i/4], output + i);
}