mirror of
https://git.wownero.com/lza_menace/wownero-python.git
synced 2024-08-15 03:25:25 +00:00
Issue a warning when filtering by height but also asking for mempool transactions, fix #37
This commit is contained in:
parent
e3dcc96a60
commit
000a1d5cff
4 changed files with 60 additions and 41 deletions
|
@ -55,9 +55,9 @@ author = 'Michal Salaban'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.4.3'
|
||||
version = '0.4.4'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.4.3'
|
||||
release = '0.4.4'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
@ -177,6 +177,10 @@ and ``unconfirmed`` query parameters that accept boolean values:
|
|||
You may as well query for both confirmed and unconfirmed transactions using
|
||||
``wallet.incoming(unconfirmed=True)`` (the default value for ``confirmed`` is ``True``).
|
||||
|
||||
.. note:: Mempool transactions don't belong to the blockchain (yet), therefore they have no height.
|
||||
Setting ``min_height`` or ``max_height`` arguments will **always exclude mempool
|
||||
transactions**. If ``unconfirmed`` is also set to ``True``, a warning will be issued.
|
||||
|
||||
.. _sending-payments:
|
||||
|
||||
Sending payments
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue