diff options
author | Determinant <[email protected]> | 2020-02-20 11:56:48 -0500 |
---|---|---|
committer | Determinant <[email protected]> | 2020-02-20 11:56:48 -0500 |
commit | bb1c884a2f466cccbc4e719f8ec021e627f2dda3 (patch) | |
tree | 720e892b9cd099f267c7c83826fd1e8d13c3c0c7 /test/test_p2p_min.cpp | |
parent | 49d48637032dcf42c5fcf8a4062a7daca2c32231 (diff) |
fix the potential data race in known_peers
Diffstat (limited to 'test/test_p2p_min.cpp')
-rw-r--r-- | test/test_p2p_min.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/test_p2p_min.cpp b/test/test_p2p_min.cpp index a221d79..bc62eda 100644 --- a/test/test_p2p_min.cpp +++ b/test/test_p2p_min.cpp @@ -43,7 +43,14 @@ int main() { for (size_t i = 0; i < nodes.size(); i++) for (size_t j = 0; j < nodes.size(); j++) if (i != j) - nodes[i].second->add_peer(nodes[j].first); + { + auto &node = nodes[i].second; + auto &peer_addr = nodes[j].first; + salticidae::PeerId pid{peer_addr}; + node->add_peer(pid); + node->set_peer_addr(pid, peer_addr); + node->conn_peer(pid); + } ec.dispatch(); return 0; } |