From f3e8dbc392adacbc936f6f810a0cab24bf685c3f Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 26 Jul 2023 14:47:52 +1000 Subject: [PATCH] Remove floating code comment This code comment is not commenting anything, remove it. --- bitcoin/src/blockdata/opcodes.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/bitcoin/src/blockdata/opcodes.rs b/bitcoin/src/blockdata/opcodes.rs index 165213e3..5c9fae7c 100644 --- a/bitcoin/src/blockdata/opcodes.rs +++ b/bitcoin/src/blockdata/opcodes.rs @@ -40,8 +40,6 @@ use self::all::*; macro_rules! all_opcodes { ($($op:ident => $val:expr, $doc:expr);*) => { - // private import so we don't have to use `all::OP_FOO` in this file. - /// Enables wildcard imports to bring into scope all opcodes and nothing else. /// /// The `all` module is provided so one can use a wildcard import `use bitcoin::opcodes::all::*` to