Skip to content

Commit 3dd594f

Browse files
committed
Fix infinite recursion in bitcoind::start() base call.
1 parent e074927 commit 3dd594f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/protocols/protocol_bitcoind.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void protocol_bitcoind::start() NOEXCEPT
6868
SUBSCRIBE_BITCOIND(handle_scan_tx_out_set, _1, _2, _3, _4);
6969
SUBSCRIBE_BITCOIND(handle_verify_chain, _1, _2, _3, _4);
7070
SUBSCRIBE_BITCOIND(handle_verify_tx_out_set, _1, _2, _3);
71-
protocol_bitcoind::start();
71+
protocol_http::start();
7272
}
7373

7474
// Dispatch.

0 commit comments

Comments
 (0)