v1.1.1: release build with tx display fix, birthday parse fix
This commit is contained in:
@@ -5,11 +5,14 @@
|
||||
### Transaction Display Fix
|
||||
- **Fixed sent transactions showing wrong addresses** — Previously, sending to a single address would display multiple addresses in the transaction history (the recipient plus the wallet's own diversified change addresses). Change outputs are now correctly detected using Incoming Viewing Key (IVK) decryption instead of a static address list, so only the actual recipient address is shown.
|
||||
|
||||
### Wallet Birthday Fix
|
||||
- **Fixed "Failed to parse wallet birthday" error** — Rescanning the wallet no longer fails due to trailing whitespace in the birthday height input.
|
||||
|
||||
---
|
||||
|
||||
## Downloads
|
||||
|
||||
| File | SHA-256 |
|
||||
|---|---|
|
||||
| `SilentDragonXLite` (Linux) | `eb4f1b891b75a4b19fb7ab9309bc5fbc24d608723f191ce9e1878a9d7ac571fc` |
|
||||
| `SilentDragonXLite.exe` (Windows) | `997dfd7029448bd30bd41163eca63186e3426c32e9791fb8b925696d1564ee79` |
|
||||
| `SilentDragonXLite` (Linux) | `ce3993107dad6207a260b46026a36cf990ca30262c1db1c0e56ad03464622241` |
|
||||
| `SilentDragonXLite.exe` (Windows) | `4dabe9e3596ba5a1b11b5ff302ed7c67c9be3eb17f456f607a68015684897b5e` |
|
||||
|
||||
Binary file not shown.
2
build.sh
2
build.sh
@@ -49,7 +49,7 @@ CONF=silentdragonx-lite.pro
|
||||
|
||||
set -e
|
||||
qbuild () {
|
||||
qmake $CONF CONFIG+=debug
|
||||
qmake $CONF CONFIG+=release
|
||||
#lupdate $CONF
|
||||
#lrelease $CONF
|
||||
# default to 2 jobs or use the -j value given as argument to this script
|
||||
|
||||
@@ -191,7 +191,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
|
||||
|
||||
// 2. Validate birthday
|
||||
QString birthday_str = restoreSeed.birthday->toPlainText();
|
||||
QString birthday_str = restoreSeed.birthday->toPlainText().trimmed();
|
||||
bool ok;
|
||||
qint64 birthday = birthday_str.toUInt(&ok);
|
||||
if (!ok) {
|
||||
|
||||
Reference in New Issue
Block a user