txpool_js.go 243 B

123456789101112131415161718
  1. package api
  2. const TxPool_JS = `
  3. web3._extend({
  4. property: 'txpool',
  5. methods:
  6. [
  7. ],
  8. properties:
  9. [
  10. new web3._extend.Property({
  11. name: 'status',
  12. getter: 'txpool_status',
  13. outputFormatter: function(obj) { return obj; }
  14. })
  15. ]
  16. });
  17. `