mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-11 06:23:47 +00:00
console: add method signature for txpool_contentByAccount
This commit is contained in:
parent
93ecc6e93c
commit
dc0e9ab1b9
1 changed files with 9 additions and 1 deletions
|
|
@ -773,7 +773,15 @@ web3._extend({
|
||||||
const TxpoolJs = `
|
const TxpoolJs = `
|
||||||
web3._extend({
|
web3._extend({
|
||||||
property: 'txpool',
|
property: 'txpool',
|
||||||
methods: [],
|
methods:
|
||||||
|
[
|
||||||
|
new web3._extend.Method({
|
||||||
|
name: 'contentByAccount',
|
||||||
|
call: 'txpool_contentByAccount',
|
||||||
|
params: 1,
|
||||||
|
inputFormatter: [null]
|
||||||
|
}),
|
||||||
|
],
|
||||||
properties:
|
properties:
|
||||||
[
|
[
|
||||||
new web3._extend.Property({
|
new web3._extend.Property({
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue