From 8d704462180c4977609239591566959f96f095a4 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Fri, 11 Oct 2024 14:08:18 +0800 Subject: [PATCH] Correct the typo in `agent/src/actor.ts` --- packages/agent/src/actor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/agent/src/actor.ts b/packages/agent/src/actor.ts index f347f6fa..7898cdb5 100644 --- a/packages/agent/src/actor.ts +++ b/packages/agent/src/actor.ts @@ -556,7 +556,7 @@ function _createActorMethod( throw new UpdateCallRejectedError(cid, methodName, requestId, response); } } - // Fall back to polling if we recieve an Accepted response code + // Fall back to polling if we receive an Accepted response code if (response.status === 202) { const pollStrategy = pollingStrategyFactory(); // Contains the certificate and the reply from the boundary node