From cf44e80cfb48d5f3e537c34eb70e9eaf15694768 Mon Sep 17 00:00:00 2001 From: yann300 Date: Fri, 22 Sep 2017 11:16:43 +0200 Subject: [PATCH] return empty if nothing to decode --- src/app/execution/txFormat.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/execution/txFormat.js b/src/app/execution/txFormat.js index 14e0412f57..aba5f32825 100644 --- a/src/app/execution/txFormat.js +++ b/src/app/execution/txFormat.js @@ -171,5 +171,6 @@ module.exports = { return { error: 'Failed to decode output: ' + e } } } + return {} } }