react-native-zcash 0.10.1-beta.2 → 0.10.1-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/RNZcash.swift +2 -1
- package/package.json +1 -1
package/ios/RNZcash.swift
CHANGED
|
@@ -602,6 +602,8 @@ class WalletSynchronizer: NSObject {
|
|
|
602
602
|
}
|
|
603
603
|
|
|
604
604
|
func updateProcessorState(event: SynchronizerState) {
|
|
605
|
+
updateBalanceState(event: event)
|
|
606
|
+
|
|
605
607
|
var scanProgress = 0
|
|
606
608
|
|
|
607
609
|
switch event.internalSyncStatus {
|
|
@@ -628,7 +630,6 @@ class WalletSynchronizer: NSObject {
|
|
|
628
630
|
"networkBlockHeight": self.processorState.networkBlockHeight,
|
|
629
631
|
]
|
|
630
632
|
emit("UpdateEvent", data)
|
|
631
|
-
updateBalanceState(event: event)
|
|
632
633
|
}
|
|
633
634
|
|
|
634
635
|
func initializeProcessorState() {
|