forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
10 years ago
|
package api
|
||
|
|
||
|
const Debug_JS = `
|
||
|
web3.extend({
|
||
|
property: 'debug',
|
||
|
methods:
|
||
|
[
|
||
|
new web3.extend.Method({
|
||
|
name: 'printBlock',
|
||
|
call: 'debug_printBlock',
|
||
|
params: 1,
|
||
|
inputFormatter: [web3.extend.formatters.formatInputInt],
|
||
|
outputFormatter: web3.extend.formatters.formatOutputString
|
||
|
}),
|
||
|
new web3.extend.Method({
|
||
|
name: 'getBlockRlp',
|
||
|
call: 'debug_getBlockRlp',
|
||
|
params: 1,
|
||
|
inputFormatter: [web3.extend.formatters.formatInputInt],
|
||
|
outputFormatter: web3.extend.formatters.formatOutputString
|
||
|
}),
|
||
|
new web3.extend.Method({
|
||
|
name: 'setHead',
|
||
|
call: 'debug_setHead',
|
||
|
params: 1,
|
||
|
inputFormatter: [web3.extend.formatters.formatInputInt],
|
||
|
outputFormatter: web3.extend.formatters.formatOutputBool
|
||
|
}),
|
||
|
new web3.extend.Method({
|
||
|
name: 'processBlock',
|
||
|
call: 'debug_processBlock',
|
||
|
params: 1,
|
||
|
inputFormatter: [web3.extend.formatters.formatInputInt],
|
||
|
outputFormatter: function(obj) { return obj; }
|
||
|
}),
|
||
|
new web3.extend.Method({
|
||
|
name: 'seedHash',
|
||
|
call: 'debug_seedHash',
|
||
|
params: 1,
|
||
|
inputFormatter: [web3.extend.formatters.formatInputInt],
|
||
|
outputFormatter: web3.extend.formatters.formatOutputString
|
||
|
})
|
||
|
],
|
||
|
properties:
|
||
|
[
|
||
|
]
|
||
|
});
|
||
|
`
|