Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BDKSwiftExampleWallet.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@
repositoryURL = "https://github.com/bitcoindevkit/bdk-swift.git";
requirement = {
kind = exactVersion;
version = "1.0.0-beta.6";
version = "1.0.0-beta.7";
};
};
AE7D5A0C2A7EE62200EAC8CE /* XCRemoteSwiftPackageReference "KeychainAccess" */ = {
Expand Down
4 changes: 2 additions & 2 deletions BDKSwiftExampleWallet/Service/BDK Service/BDKService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ private class BDKService {
.inspectSpks(inspector: inspector)
.build()
let update = try esploraClient.sync(
syncRequest: syncRequest,
request: syncRequest,
parallelRequests: UInt64(5)
)
let _ = try wallet.applyUpdate(update: update)
Expand All @@ -383,7 +383,7 @@ private class BDKService {
.inspectSpksForAllKeychains(inspector: inspector)
.build()
let update = try esploraClient.fullScan(
fullScanRequest: fullScanRequest,
request: fullScanRequest,
stopGap: UInt64(150), // should we default value this for folks?
parallelRequests: UInt64(5) // should we default value this for folks?
)
Expand Down