Compare commits

...

3 Commits

Author SHA1 Message Date
Michał Sałaban d48d615162 Bump up version
2 years ago
Michał Sałaban fbbf9fd003 Add PySocks to requirements, close #109
2 years ago
Fernando Vega f3ba04b69d
Fix #110
2 years ago

@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0
current_version = 1.0.1
parse = (?P<major>\d+)\.(?P<minor>\d+)(?:\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}

@ -14,7 +14,7 @@ Python Monero module
A comprehensive Python module for handling Monero cryptocurrency.
* release 1.0
* release 1.0.1
* open source: https://github.com/monero-ecosystem/monero-python
* works with Monero 0.17.x and `the latest source`_ (at least we try to keep up)
* Python 2.x and 3.x compatible

@ -27,7 +27,7 @@ sys.path.insert(0, os.path.abspath("../.."))
# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'
# needs_sphinx = '1.0.1'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
@ -56,9 +56,9 @@ author = "Michal Salaban"
# built documents.
#
# The short X.Y version.
version = "1.0"
version = "1.0.1"
# The full version, including alpha/beta/rc tags.
release = "1.0"
release = "1.0.1"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

@ -1,3 +1,3 @@
from . import address, account, const, daemon, wallet, numbers, wordlists, seed
__version__ = "1.0"
__version__ = "1.0.1"

@ -126,6 +126,8 @@ class JSONRPCWallet(object):
def transfers_in(self, account, pmtfilter):
params = {"account_index": account, "pending": False}
method = "get_transfers"
_pmts = {}
if pmtfilter.tx_ids:
method = "get_transfer_by_txid"
if pmtfilter.unconfirmed:

@ -1,5 +1,6 @@
pycryptodomex~=3.10
pynacl~=1.4
pysocks~=1.7
requests
six>=1.12.0
ipaddress

Loading…
Cancel
Save