Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
1fac96c1
Unverified
Commit
1fac96c1
authored
Jul 14, 2021
by
gary rong
Committed by
GitHub
Jul 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
internal/web3ext: remove unused console APIs (#23208)
parent
b9e6e437
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
135 deletions
+12
-135
web3ext.go
internal/web3ext/web3ext.go
+12
-135
No files found.
internal/web3ext/web3ext.go
View file @
1fac96c1
...
...
@@ -18,55 +18,20 @@
package
web3ext
var
Modules
=
map
[
string
]
string
{
"accounting"
:
AccountingJs
,
"admin"
:
AdminJs
,
"chequebook"
:
ChequebookJs
,
"clique"
:
CliqueJs
,
"ethash"
:
EthashJs
,
"debug"
:
DebugJs
,
"eth"
:
EthJs
,
"miner"
:
MinerJs
,
"net"
:
NetJs
,
"personal"
:
PersonalJs
,
"rpc"
:
RpcJs
,
"shh"
:
ShhJs
,
"swarmfs"
:
SwarmfsJs
,
"txpool"
:
TxpoolJs
,
"les"
:
LESJs
,
"vflux"
:
VfluxJs
,
"admin"
:
AdminJs
,
"clique"
:
CliqueJs
,
"ethash"
:
EthashJs
,
"debug"
:
DebugJs
,
"eth"
:
EthJs
,
"miner"
:
MinerJs
,
"net"
:
NetJs
,
"personal"
:
PersonalJs
,
"rpc"
:
RpcJs
,
"txpool"
:
TxpoolJs
,
"les"
:
LESJs
,
"vflux"
:
VfluxJs
,
}
const
ChequebookJs
=
`
web3._extend({
property: 'chequebook',
methods: [
new web3._extend.Method({
name: 'deposit',
call: 'chequebook_deposit',
params: 1,
inputFormatter: [null]
}),
new web3._extend.Property({
name: 'balance',
getter: 'chequebook_balance',
outputFormatter: web3._extend.utils.toDecimal
}),
new web3._extend.Method({
name: 'cash',
call: 'chequebook_cash',
params: 1,
inputFormatter: [null]
}),
new web3._extend.Method({
name: 'issue',
call: 'chequebook_issue',
params: 2,
inputFormatter: [null, null]
}),
]
});
`
const
CliqueJs
=
`
web3._extend({
property: 'clique',
...
...
@@ -749,50 +714,6 @@ web3._extend({
});
`
const
ShhJs
=
`
web3._extend({
property: 'shh',
methods: [
],
properties:
[
new web3._extend.Property({
name: 'version',
getter: 'shh_version',
outputFormatter: web3._extend.utils.toDecimal
}),
new web3._extend.Property({
name: 'info',
getter: 'shh_info'
}),
]
});
`
const
SwarmfsJs
=
`
web3._extend({
property: 'swarmfs',
methods:
[
new web3._extend.Method({
name: 'mount',
call: 'swarmfs_mount',
params: 2
}),
new web3._extend.Method({
name: 'unmount',
call: 'swarmfs_unmount',
params: 1
}),
new web3._extend.Method({
name: 'listmounts',
call: 'swarmfs_listmounts',
params: 0
}),
]
});
`
const
TxpoolJs
=
`
web3._extend({
property: 'txpool',
...
...
@@ -825,50 +746,6 @@ web3._extend({
});
`
const
AccountingJs
=
`
web3._extend({
property: 'accounting',
methods: [
new web3._extend.Property({
name: 'balance',
getter: 'account_balance'
}),
new web3._extend.Property({
name: 'balanceCredit',
getter: 'account_balanceCredit'
}),
new web3._extend.Property({
name: 'balanceDebit',
getter: 'account_balanceDebit'
}),
new web3._extend.Property({
name: 'bytesCredit',
getter: 'account_bytesCredit'
}),
new web3._extend.Property({
name: 'bytesDebit',
getter: 'account_bytesDebit'
}),
new web3._extend.Property({
name: 'msgCredit',
getter: 'account_msgCredit'
}),
new web3._extend.Property({
name: 'msgDebit',
getter: 'account_msgDebit'
}),
new web3._extend.Property({
name: 'peerDrops',
getter: 'account_peerDrops'
}),
new web3._extend.Property({
name: 'selfDrops',
getter: 'account_selfDrops'
}),
]
});
`
const
LESJs
=
`
web3._extend({
property: 'les',
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment