added eth.pendingTransactions

This commit is contained in:
Bas van Kervel
2015-06-24 13:53:37 +02:00
parent 22c7ce0162
commit f1a4a6e563
4 changed files with 79 additions and 6 deletions

View File

@@ -15,6 +15,14 @@ web3._extend({
inputFormatter: [web3._extend.formatters.formatInputString,web3._extend.formatters.formatInputString],
outputFormatter: web3._extend.formatters.formatOutputString
})
],
properties:
[
new web3._extend.Property({
name: 'pendingTransactions',
getter: 'eth_pendingTransactions',
outputFormatter: function(obj) { return obj; }
})
]
});
`