From aa303a96d1b7d3ab457e9cddcd0b4ea98a836569 Mon Sep 17 00:00:00 2001 From: WHR Date: Tue, 10 Jun 2025 21:16:21 +0800 Subject: [PATCH] Correct unit prefix symbol for unit 'mebibyte' --- src/pow_hash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pow_hash.cpp b/src/pow_hash.cpp index 6954d45..e67061e 100644 --- a/src/pow_hash.cpp +++ b/src/pow_hash.cpp @@ -84,7 +84,7 @@ RandomX_Hasher::RandomX_Hasher(p2pool* pool) memory_allocated = (memory_allocated + (1 << 20) - 1) >> 20; - LOGINFO(1, "allocated " << memory_allocated << " MB"); + LOGINFO(1, "allocated " << memory_allocated << " MiB"); } RandomX_Hasher::~RandomX_Hasher()