File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -575,10 +575,12 @@ final class BDKService {
575575
576576 var sweptTxids : [ Txid ] = [ ]
577577 for descriptorString in candidates {
578- guard let descriptor = try ? Descriptor (
579- descriptor: descriptorString,
580- network: self . network
581- ) else {
578+ guard
579+ let descriptor = try ? Descriptor (
580+ descriptor: descriptorString,
581+ network: self . network
582+ )
583+ else {
582584 continue
583585 }
584586
Original file line number Diff line number Diff line change @@ -147,7 +147,8 @@ class OnboardingViewModel: ObservableObject {
147147 do {
148148 if self . looksLikeWif ( self . words) {
149149 throw AppError . generic (
150- message: " WIF is for sweep, not wallet creation. Open an existing wallet and use Send > Scan/Paste to sweep it. "
150+ message:
151+ " WIF is for sweep, not wallet creation. Open an existing wallet and use Send > Scan/Paste to sweep it. "
151152 )
152153 }
153154 if self . isDescriptor {
Original file line number Diff line number Diff line change @@ -173,7 +173,9 @@ extension AddressView {
173173 return false
174174 }
175175
176- let base58Charset = CharacterSet ( charactersIn: " 123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz " )
176+ let base58Charset = CharacterSet (
177+ charactersIn: " 123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz "
178+ )
177179 return value. unicodeScalars. allSatisfy { base58Charset. contains ( $0) }
178180 }
179181}
You can’t perform that action at this time.
0 commit comments