Skip to content

Commit

Permalink
Minor grammatical correction in wallet_rpc_api.py (#18955)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Jsewill authored Dec 20, 2024
1 parent 69555bc commit a7bd676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/rpc/wallet_rpc_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a7bd676

Please sign in to comment.