Merge branch 'isar-transactions' into paynyms

This commit is contained in:
julian 2023-01-20 11:59:46 -06:00
commit 8db66faecc
4 changed files with 6 additions and 4 deletions

@ -1 +1 @@
Subproject commit 66eaa2f3c7133f1dbf0b1fc950e7a9e3cc611185
Subproject commit f1031db5bb67b38d028187f0ead192acb3e9ba55

View file

@ -954,11 +954,12 @@ class MoneroWallet extends CoinServiceAPI with WalletCache, WalletDB {
DefaultNodes.getNodeFor(coin);
}
void onNewBlock() {
void onNewBlock({required int height, required int blocksLeft}) {
//
print("=============================");
print("New Block! :: $walletName");
print("=============================");
updateCachedChainHeight(height);
_refreshTxDataHelper();
}

View file

@ -1022,11 +1022,12 @@ class WowneroWallet extends CoinServiceAPI with WalletCache, WalletDB {
DefaultNodes.getNodeFor(coin);
}
void onNewBlock() {
void onNewBlock({required int height, required int blocksLeft}) {
//
print("=============================");
print("New Wownero Block! :: $walletName");
print("=============================");
updateCachedChainHeight(height);
_refreshTxDataHelper();
}

View file

@ -11,7 +11,7 @@ description: Stack Wallet
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.5.27+100
version: 1.5.29+103
environment:
sdk: ">=2.17.0 <3.0.0"