Skip to content

Commit

Permalink
Style.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed May 22, 2024
1 parent 49688ea commit 3835534
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/bitcoin/network/net/connector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class BCT_API connector
socket_handler&& handler) NOEXCEPT;

protected:
typedef race_speed<two, const code&, const socket::ptr&> racer_t;
typedef race_speed<two, const code&, const socket::ptr&> racer;

/// Try to connect to host:port, starts timer.
virtual void start(const std::string& hostname, uint16_t port,
Expand All @@ -97,7 +97,7 @@ class BCT_API connector
// These are protected by strand.
asio::resolver resolver_;
deadline::ptr timer_;
racer_t racer_{};
racer racer_{};

private:
typedef std::shared_ptr<bool> finish_ptr;
Expand Down

0 comments on commit 3835534

Please sign in to comment.