Skip to content

Commit

Permalink
fix: Provider openrpc response and error methods have a wrapper object
Browse files Browse the repository at this point in the history
  • Loading branch information
kpears201 committed Nov 7, 2023
1 parent 7a5bda3 commit 7e70c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/macrofier/engine.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ function insertMethodMacros(template, methodObj, json, templates, examples = {})
}
const method = {
name: methodObj.name,
params: methodObj.params.map(p => p.name).join(''),
params: methodObj.params.map(p => p.name).join(', '),
transforms: null,
alternative: null,
deprecated: isDeprecatedMethod(methodObj),
Expand Down

0 comments on commit 7e70c0b

Please sign in to comment.