Skip to content

Commit

Permalink
v25
Browse files Browse the repository at this point in the history
  • Loading branch information
npy0 committed Oct 19, 2023
1 parent 2792813 commit 8671f2d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Although not part of the package, the light wallet included in the repository ca
* `-n`, `--network`. Choose the network to interact with - nano, banano, or beta. The default network is nano.
* `-t`, `--tor`. Communicate with RPC node via the tor network.

The wallet has a sub-command, `nanopy-wallet open FILE KEY`, to use seeds from *kbdx files. `FILE` is the *.kdbx database and `KEY` is a seed in it. `open` has the following options.
The wallet has a sub-command, `nanopy-wallet open FILE KEY`, to use seeds from *kdbx files. `FILE` is the *.kdbx database and `KEY` is a seed in it. `open` has the following options.
* `-a`, `--audit`. Check state of all accounts from index 0 to the specified limit. (limit is supplied using the `-i` tag)
* `-d`, `--demo`. Run in demo mode.
* `--empty`. Empty funds to the specified send address.
Expand All @@ -41,7 +41,7 @@ The wallet has a sub-command, `nanopy-wallet open FILE KEY`, to use seeds from *
* `-s`, `--send`. Supply destination address to create a send block.

## Support
Contact me on nano's [forum](https://forum.nano.org/u/npy) (`npy`) or discord (`npy#2928`). You can support the project by reporting any bugs you find and/or submitting fixes/improvements. When submitting pull requests please format the code using `black` (for Python) or `clang-format` (for C).
Contact me on discord (`npy#2928`). You can support the project by reporting any bugs you find and/or submitting fixes/improvements. When submitting pull requests please format the code using `black` (for Python) or `clang-format` (for C).
```
clang-format -i nanopy/*.c
black nanopy docs nanopy-wallet setup.py ghtest.py
Expand Down
2 changes: 1 addition & 1 deletion nanopy-wallet
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ online = not (args.offline or config["DEFAULT"].getboolean("offline"))
tor = args.tor or config["DEFAULT"].getboolean("tor", fallback=args.tor)

if online:
iploc = RPC(url="http://ipinfo.io/json", tor=tor)._get()
iploc = RPC(url="https://ipinfo.io/json", tor=tor)._get()
bc.warn1(iploc["city"] + " " + iploc["country"])
rpc = RPC(url=config["DEFAULT"].get("rpc", fallback=rpc_url), tor=tor)
else:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def get_ed25519_blake2b_ext_kwargs(use_vc=False, platform=None):
env = os.environ
try:
env["CC"] = os.getenv("CC") or find_gcc(
*(15, 5), dirs=os.getenv("PATH").split(os.pathsep)
*(19, 5), dirs=os.getenv("PATH").split(os.pathsep)
)
except:
pass
Expand All @@ -162,7 +162,7 @@ def get_ed25519_blake2b_ext_kwargs(use_vc=False, platform=None):

setup(
name="nanopy",
version="24.0",
version="25.0",
packages=["nanopy"],
url="https://github.com/npy0/nanopy",
license="MIT",
Expand Down

0 comments on commit 8671f2d

Please sign in to comment.