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 Jul 29, 2021
1 parent 853cacd commit ddf1931
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 @@ -2778,9 +2778,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 ddf1931

Please sign in to comment.