Skip to content

Commit 139b529

Browse files
committed
Remove witness argument from input.
1 parent 8f64eae commit 139b529

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/bitcoin/node/protocols/protocol_explore.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class BCN_API protocol_explore
8686
////
8787
////bool handle_get_input(const code& ec, interface::input,
8888
//// uint8_t version, uint8_t media, system::hash_cptr hash,
89-
//// std::optional<uint32_t> index, bool witness) NOEXCEPT;
89+
//// std::optional<uint32_t> index) NOEXCEPT;
9090
////bool handle_get_input_script(const code& ec, interface::input_script,
9191
//// uint8_t version, uint8_t media, system::hash_cptr hash,
9292
//// std::optional<uint32_t> index) NOEXCEPT;

src/protocols/protocol_explore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void protocol_explore::start() NOEXCEPT
5757
////SUBSCRIBE_EXPLORE(handle_get_block_tx, _1, _2, _3, _4, _5, _6, _7, _8);
5858
SUBSCRIBE_EXPLORE(handle_get_transaction, _1, _2, _3, _4, _5, _6);
5959
////SUBSCRIBE_EXPLORE(handle_get_address, _1, _2, _3, _4, _5);
60-
////SUBSCRIBE_EXPLORE(handle_get_input, _1, _2, _3, _4, _5, _6, _7);
60+
////SUBSCRIBE_EXPLORE(handle_get_input, _1, _2, _3, _4, _5, _6);
6161
////SUBSCRIBE_EXPLORE(handle_get_input_script, _1, _2, _3, _4, _5, _6);
6262
////SUBSCRIBE_EXPLORE(handle_get_input_witness, _1, _2, _3, _4, _5, _6);
6363
////SUBSCRIBE_EXPLORE(handle_get_output, _1, _2, _3, _4, _5, _6);

0 commit comments

Comments
 (0)