From 6ddbcb02834b1191e874b389d057a17b7b911ff1 Mon Sep 17 00:00:00 2001 From: Alex Pikme <30472093+reject-i@users.noreply.github.com> Date: Fri, 25 Apr 2025 10:56:28 +0200 Subject: [PATCH] fix error pow.rs --- bitcoin/src/pow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/pow.rs b/bitcoin/src/pow.rs index ae295a3b7..81216d0ea 100644 --- a/bitcoin/src/pow.rs +++ b/bitcoin/src/pow.rs @@ -565,7 +565,7 @@ impl U256 { fn low_u128(&self) -> u128 { self.1 } /// Returns this `U256` as a `u128` saturating to `u128::MAX` if `self` is too big. - // Matagen gives false positive because >= and > both return u128::MAX + // Mutagen gives false positive because >= and > both return u128::MAX fn saturating_to_u128(&self) -> u128 { if *self > U256::from(u128::MAX) { u128::MAX