mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-28 16:47:22 +00:00
19 lines
222 B
Go
19 lines
222 B
Go
package api
|
|
|
|
const Net_JS = `
|
|
web3._extend({
|
|
property: 'net',
|
|
methods:
|
|
[
|
|
new web3._extend.Method({
|
|
name: 'addPeer',
|
|
call: 'net_addPeer',
|
|
params: 1,
|
|
inputFormatter: [null]
|
|
})
|
|
],
|
|
properties:
|
|
[
|
|
]
|
|
});
|
|
`
|