mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
all: Add GetTransactionStatus new web3 api
This commit is contained in:
parent
a5dc74b44c
commit
d1cf606dc2
1 changed files with 7 additions and 0 deletions
|
|
@ -5358,6 +5358,12 @@ var methods = function () {
|
|||
outputFormatter: utils.toDecimal
|
||||
});
|
||||
|
||||
var getTransactionStatus = new Method({
|
||||
name: 'getTransactionStatus',
|
||||
call: 'eth_getTransactionStatus',
|
||||
params: 1
|
||||
});
|
||||
|
||||
var sendRawTransaction = new Method({
|
||||
name: 'sendRawTransaction',
|
||||
call: 'eth_sendRawTransaction',
|
||||
|
|
@ -5444,6 +5450,7 @@ var methods = function () {
|
|||
getTransactionFromBlock,
|
||||
getTransactionReceipt,
|
||||
getTransactionCount,
|
||||
getTransactionStatus,
|
||||
call,
|
||||
estimateGas,
|
||||
sendRawTransaction,
|
||||
|
|
|
|||
Loading…
Reference in a new issue