Browse Source

fix peer_handle

Alex Cheema 6 months ago
parent
commit
97f3bad38f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exo/networking/peer_handle.py

+ 1 - 1
exo/networking/peer_handle.py

@@ -48,7 +48,7 @@ class PeerHandle(ABC):
     pass
 
   @abstractmethod
-  async def send_new_token(self, request_id: str, token: int, is_finished: bool) -> None:
+  async def send_result(self, request_id: str, result: List[int], is_finished: bool) -> None:
     pass
 
   @abstractmethod