mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
internal/web3ext: fix swarmfs wrappers
Remove inputFormatter specifications so users get an error when passing the wrong number of arguments.
This commit is contained in:
parent
40818ab287
commit
cfea375faa
1 changed files with 19 additions and 24 deletions
|
|
@ -29,10 +29,8 @@ var Modules = map[string]string{
|
|||
"shh": Shh_JS,
|
||||
"swarmfs": SWARMFS_JS,
|
||||
"txpool": TxPool_JS,
|
||||
|
||||
}
|
||||
|
||||
|
||||
const Chequebook_JS = `
|
||||
web3._extend({
|
||||
property: 'chequebook',
|
||||
|
|
@ -497,20 +495,17 @@ web3._extend({
|
|||
new web3._extend.Method({
|
||||
name: 'mount',
|
||||
call: 'swarmfs_mount',
|
||||
params: 2,
|
||||
inputFormatter: [null,null]
|
||||
params: 2
|
||||
}),
|
||||
new web3._extend.Method({
|
||||
name: 'unmount',
|
||||
call: 'swarmfs_unmount',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
params: 1
|
||||
}),
|
||||
new web3._extend.Method({
|
||||
name: 'listmounts',
|
||||
call: 'swarmfs_listmounts',
|
||||
params: 0,
|
||||
inputFormatter: []
|
||||
params: 0
|
||||
})
|
||||
]
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue