From a7bd676beaa57a378d5fa051608303b77611f119 Mon Sep 17 00:00:00 2001 From: Jsewill Date: Fri, 20 Dec 2024 13:29:19 -0600 Subject: [PATCH] Minor grammatical correction in wallet_rpc_api.py (#18955) changed "is not belong" to "does not belong" in the `did_find_lost_did` endpoint when `derivation_record is None`, in wallet_rpc_api.py. --- chia/rpc/wallet_rpc_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chia/rpc/wallet_rpc_api.py b/chia/rpc/wallet_rpc_api.py index fff417318f39..7ac970e312d0 100644 --- a/chia/rpc/wallet_rpc_api.py +++ b/chia/rpc/wallet_rpc_api.py @@ -2588,7 +2588,7 @@ async def did_find_lost_did(self, request: dict[str, Any]) -> EndpointResult: launcher_id = bytes32(singleton_struct.rest().first().as_atom()) if derivation_record is None: - return {"success": False, "error": f"This DID {launcher_id} is not belong to the connected wallet"} + return {"success": False, "error": f"This DID {launcher_id} does not belong to the connected wallet"} else: our_inner_puzzle: Program = self.service.wallet_state_manager.main_wallet.puzzle_for_pk( derivation_record.pubkey