From 0f682658bc7c15ff8b22fdd007f26422fa9e1883 Mon Sep 17 00:00:00 2001 From: Khushboo Mehta Date: Tue, 1 Feb 2022 18:50:52 +0100 Subject: [PATCH] fix(@desktop/wallet): send transaction to address UI is broken fixes #4623 --- src/app_service/service/contacts/async_tasks.nim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app_service/service/contacts/async_tasks.nim b/src/app_service/service/contacts/async_tasks.nim index c88692b271..f369b23811 100644 --- a/src/app_service/service/contacts/async_tasks.nim +++ b/src/app_service/service/contacts/async_tasks.nim @@ -21,6 +21,9 @@ const lookupContactTask: Task = proc(argEncoded: string) {.gcsafe, nimcall.} = # TODO refactor those calls to use the new backend and also do it in a signle call pubkey = ens_utils.pubkey(arg.value) address = ens_utils.address(arg.value) + else: + pubkey = "" + address = "" let output = %*{ "id": pubkey,