Skip to content

Commit

Permalink
Merge 430c6eb into 971f72e
Browse files Browse the repository at this point in the history
  • Loading branch information
corydickson committed Oct 2, 2019
2 parents 971f72e + 430c6eb commit b593dcf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/aragon-wrapper/src/radspec/index.js
Expand Up @@ -44,7 +44,9 @@ export async function tryEvaluatingRadspec (intent, wrapper) {
},
{ ethNode: wrapper.web3.currentProvider }
)
} catch (err) {}
} catch (err) {
console.error(`Could not evaluate a description for given transaction data: ${intent.data}`, err)
}
}

return {
Expand Down
Expand Up @@ -11,7 +11,8 @@ export default async function (request, proxy, wrapper) {

let description
try {
description = await tryEvaluatingRadspec(transaction, wrapper)
const decoratedTransaction = await tryEvaluatingRadspec(transaction, wrapper)
description = decoratedTransaction.description
} catch (_) {}

if (description) {
Expand Down

0 comments on commit b593dcf

Please sign in to comment.