mirror of
https://git.wownero.com/lza_menace/wownero-python.git
synced 2024-08-15 03:25:25 +00:00
Describe mempool() method
This commit is contained in:
parent
d20b710034
commit
4287a1918c
1 changed files with 5 additions and 0 deletions
|
@ -35,4 +35,9 @@ class Daemon(object):
|
||||||
return self._backend.send_transaction(tx.blob, relay=relay)
|
return self._backend.send_transaction(tx.blob, relay=relay)
|
||||||
|
|
||||||
def mempool(self):
|
def mempool(self):
|
||||||
|
"""
|
||||||
|
Returns current mempool contents.
|
||||||
|
|
||||||
|
:rtype: list of :class:`Transaction <monero.transaction.Transaction>`
|
||||||
|
"""
|
||||||
return self._backend.mempool()
|
return self._backend.mempool()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue