mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-24 12:29:37 +00:00
Merge branch 'isar-transactions' into paynyms
This commit is contained in:
commit
8db66faecc
4 changed files with 6 additions and 4 deletions
|
@ -1 +1 @@
|
|||
Subproject commit 66eaa2f3c7133f1dbf0b1fc950e7a9e3cc611185
|
||||
Subproject commit f1031db5bb67b38d028187f0ead192acb3e9ba55
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue