Skip to content

Commit bd28bd7

Browse files
committed
BC_API declaration ordering (style).
1 parent dc7403b commit bd28bd7

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

include/bitcoin/system/wallet/neutrino.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,22 @@ struct BC_API block_filter
3939
data_chunk filter;
4040
};
4141

42-
bool BC_API compute_filter(data_chunk& out,
42+
BC_API bool compute_filter(data_chunk& out,
4343
const chain::block& block) NOEXCEPT;
4444

45-
hash_digest BC_API compute_filter_header(const hash_digest& previous_header,
45+
BC_API hash_digest compute_filter_header(const hash_digest& previous_header,
4646
const data_chunk& filter) NOEXCEPT;
4747

48-
bool BC_API match_filter(const block_filter& filter,
48+
BC_API bool match_filter(const block_filter& filter,
4949
const chain::script& script) NOEXCEPT;
5050

51-
bool BC_API match_filter(const block_filter& filter,
51+
BC_API bool match_filter(const block_filter& filter,
5252
const chain::scripts& scripts) NOEXCEPT;
5353

54-
bool BC_API match_filter(const block_filter& filter,
54+
BC_API bool match_filter(const block_filter& filter,
5555
const wallet::payment_address& address) NOEXCEPT;
5656

57-
bool BC_API match_filter(const block_filter& filter,
57+
BC_API bool match_filter(const block_filter& filter,
5858
const wallet::payment_address::list& addresses) NOEXCEPT;
5959

6060
} // namespace neutrino

0 commit comments

Comments
 (0)