From 6b9d439dc1cc05b8da31381a9f585d22e3847852 Mon Sep 17 00:00:00 2001 From: Martin Habovstiak Date: Thu, 20 Feb 2025 16:23:26 +0100 Subject: [PATCH] Remove stale FIXME comments These comments said that the modules should be private but they already are. Also, the internals of the newtypes became private a few commits ago. --- primitives/src/script/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/primitives/src/script/mod.rs b/primitives/src/script/mod.rs index 8777eeeef..6f90337a9 100644 --- a/primitives/src/script/mod.rs +++ b/primitives/src/script/mod.rs @@ -2,9 +2,7 @@ //! Bitcoin scripts. -/// FIXME: Make this private. mod borrowed; -/// FIXME: Make this private. mod owned; use core::cmp::Ordering;