Skip to content

Commit

Permalink
[FOLD] Fix shard info message.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregtatcam committed Sep 22, 2021
1 parent 4baeb11 commit 3135288
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ripple/overlay/impl/PeerImp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2996,9 +2996,9 @@ PeerImp::onStartProtocol()
send(m);

// Request shard info from peer
protocol::TMGetPeerShardInfo tmGPS;
tmGPS.set_hops(0);
send(std::make_shared<Message>(tmGPS, protocol::mtGET_PEER_SHARD_INFO));
protocol::TMGetPeerShardInfoV2 tmGPS;
tmGPS.set_relays(0);
send(std::make_shared<Message>(tmGPS, protocol::mtGET_PEER_SHARD_INFO_V2));
}

void
Expand Down

0 comments on commit 3135288

Please sign in to comment.