From 16cc0505e3ec25749ef9c662228df870463493c6 Mon Sep 17 00:00:00 2001 From: Alexandru Ionut Budisteanu Date: Sat, 23 Oct 2021 22:24:39 +0300 Subject: [PATCH] fix typo --- src/common/satoshmindb/Interface-SatoshminDB.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/satoshmindb/Interface-SatoshminDB.js b/src/common/satoshmindb/Interface-SatoshminDB.js index d7fd59cfa..6cde93a2b 100644 --- a/src/common/satoshmindb/Interface-SatoshminDB.js +++ b/src/common/satoshmindb/Interface-SatoshminDB.js @@ -60,7 +60,7 @@ class InterfaceSatoshminDB { if (!response ) return null; if ( !response._attachments ) return response.value; if ( response._attachments.key ) return Buffer.from( Buffer.from( response._attachments.key.data, 'base64').toString(), "hex"); //get attachment - return Buffer.from( response._attachments.myBlob //get attachment + return Buffer.from( response._attachments.myBlob.data ) //get attachment } catch (err) {