Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/bitcoin/node/protocols/protocol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ class BCN_API protocol
/// Zulu time at which the node started.
virtual time_t start_time() const NOEXCEPT;

/// The number of peer channels (counted, not quiet).
/// The number of peer channels.
virtual size_t channel_count() const NOEXCEPT;

/// The number of inbound peer channels (counted, not quiet).
/// The number of inbound peer channels.
virtual size_t inbound_channel_count() const NOEXCEPT;

/// The number of host pool addresses.
Expand Down
4 changes: 2 additions & 2 deletions include/bitcoin/node/sessions/session.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ class BCN_API session
/// Zulu time at which the node started.
virtual time_t start_time() const NOEXCEPT;

/// The number of peer channels (counted, not quiet).
/// The number of peer channels.
virtual size_t channel_count() const NOEXCEPT;

/// The number of inbound peer channels (counted, not quiet).
/// The number of inbound peer channels.
virtual size_t inbound_channel_count() const NOEXCEPT;

/// The number of host pool addresses.
Expand Down
4 changes: 2 additions & 2 deletions include/bitcoin/node/settings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ class BCN_API settings
bool provide_filters;
bool limited_blocks;
float allowed_deviation;
float minimum_fee_rate;
float minimum_bump_rate;
double minimum_fee_rate;
double minimum_bump_rate;
uint64_t batch_signatures;
uint16_t announcement_cache;
uint16_t fee_estimate_horizon;
Expand Down
Loading