Merge pull request #20781 from karalabe/fix-clique-console-apis

internal/web3ext: fix clique console apis to work on missing arguments
pull/20788/head
Péter Szilágyi 5 years ago committed by GitHub
commit 0e6ea9199c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      internal/web3ext/web3ext.go

@ -74,7 +74,7 @@ web3._extend({
name: 'getSnapshot',
call: 'clique_getSnapshot',
params: 1,
inputFormatter: [web3._extend.utils.fromDecimal]
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
}),
new web3._extend.Method({
name: 'getSnapshotAtHash',
@ -85,7 +85,7 @@ web3._extend({
name: 'getSigners',
call: 'clique_getSigners',
params: 1,
inputFormatter: [web3._extend.utils.fromDecimal]
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
}),
new web3._extend.Method({
name: 'getSignersAtHash',

Loading…
Cancel
Save