Skip to content

Commit bb2c145

Browse files
key-wallet: expose ManagedWallet.getInfoHandle() for internal use
- Change visibility from private to internal to allow internal helpers to access the opaque FFI handle. - No functional behavior change.
1 parent fe4761d commit bb2c145

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/swift-sdk/Sources/SwiftDashSDK/KeyWallet/ManagedWallet.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -419,9 +419,9 @@ public class ManagedWallet {
419419
return utxos
420420
}
421421

422-
// MARK: - Private Helpers
423-
424-
private func getInfoHandle() -> UnsafeMutablePointer<FFIManagedWalletInfo>? {
422+
// MARK: - Internal Helpers
423+
424+
internal func getInfoHandle() -> UnsafeMutablePointer<FFIManagedWalletInfo>? {
425425
// The handle is an FFIManagedWalletInfo* (opaque C handle)
426426
return handle
427427
}

0 commit comments

Comments
 (0)