Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change lightwalletd server to localhost, for testing #1

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/printversion.ps1
@@ -1 +1 @@
echo "VERSION=1.7.8" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "VERSION=1.7.12" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
2 changes: 1 addition & 1 deletion bin/printversion.sh
@@ -1,3 +1,3 @@
#!/bin/bash
VERSION="1.7.8"
VERSION="1.7.12"
echo "VERSION=$VERSION" >> $GITHUB_ENV
10 changes: 5 additions & 5 deletions native/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion native/Cargo.toml
Expand Up @@ -15,6 +15,6 @@ default-features = false
features = ["napi-6"]

[dependencies]
zecwalletlitelib = { git = "https://github.com/adityapk00/zecwallet-light-cli", rev = "89be353b5ea600ee21d998254598fb19d8778417" }
zecwalletlitelib = { git = "https://github.com/adityapk00/zecwallet-light-cli", rev = "1aac5b589f85e234346f978cbc4adbdca47ec7dd" }
#zecwalletlitelib = { path = "../../zecwallet-light-cli/lib" }
lazy_static = "1.4.0"
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "zecwallet-lite",
"productName": "Zecwallet Lite",
"version": "1.7.8",
"version": "1.7.12",
"private": true,
"description": "Zecwallet Lite",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar.tsx
Expand Up @@ -276,7 +276,7 @@ class Sidebar extends PureComponent<Props & RouteComponentProps, State> {
openErrorModal(
"Zecwallet Lite",
<div className={cstyles.verticalflex}>
<div className={cstyles.margintoplarge}>Zecwallet Lite v1.7.8</div>
<div className={cstyles.margintoplarge}>Zecwallet Lite v1.7.12</div>
<div className={cstyles.margintoplarge}>Built with Electron. Copyright (c) 2018-2021, Aditya Kulkarni.</div>
<div className={cstyles.margintoplarge}>
The MIT License (MIT) Copyright (c) 2018-2021 Zecwallet
Expand Down
2 changes: 1 addition & 1 deletion src/utils/utils.ts
Expand Up @@ -11,7 +11,7 @@ export default class Utils {
static V2_LIGHTWALLETD: string = "https://lwdv2.zecwallet.co:1443";

// v3 LightwalletD
static V3_LIGHTWALLETD: string = "https://lwdv3.zecwallet.co";
static V3_LIGHTWALLETD: string = "http://127.0.0.1:9067";
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I forgot to make this change, and my zecwallet-lite instance generated zaddresses.. :(


static isSapling(addr: string): boolean {
if (!addr) return false;
Expand Down