Commented out the bool variable from env_to_send_in_RPC() at places

This commit is contained in:
lla-dane
2025-08-23 15:52:43 +05:30
parent 15f4a399ec
commit 091ac082b9
4 changed files with 12 additions and 12 deletions

View File

@ -112,7 +112,7 @@ class ValueStore:
message.type = Message.MessageType.PUT_VALUE
# Create sender's signed-peer-record
envelope_bytes, bool = env_to_send_in_RPC(self.host)
envelope_bytes, _ = env_to_send_in_RPC(self.host)
message.senderRecord = envelope_bytes
# Set message fields
@ -243,7 +243,7 @@ class ValueStore:
message.key = key
# Create sender's signed-peer-record
envelope_bytes, bool = env_to_send_in_RPC(self.host)
envelope_bytes, _ = env_to_send_in_RPC(self.host)
message.senderRecord = envelope_bytes
# Serialize and send the protobuf message