Skip to content

Commit 9ad3964

Browse files
committed
message.OutgoingMsgBase.stamp does not need dst_node anymore (it was already provided to the constructor. (fixed)
1 parent a7df81f commit 9ad3964

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/controller.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def on_datagram_received(self, datagram):
170170
return self._next_main_loop_call_ts, datagrams_to_send
171171
response_msg = self._get_response(msg)
172172
if response_msg:
173-
bencoded_response = response_msg.stamp(msg.tid, addr)
173+
bencoded_response = response_msg.stamp(msg.tid)
174174
datagrams_to_send.append(
175175
message.Datagram(bencoded_response, addr))
176176
maintenance_queries_to_send = self._routing_m.on_query_received(

0 commit comments

Comments
 (0)