Skip to content

Commit 5937537

Browse files
chore: removed extra space
1 parent 4450b0f commit 5937537

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Web3Core/KeystoreManager/BIP32Keystore.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public class BIP32Keystore: AbstractKeystore {
107107
try self.init(seed: seed, password: password, prefixPath: prefixPath, aesMode: aesMode)
108108
}
109109

110-
public init? (seed: Data, password: String, prefixPath: String = HDNode.defaultPathMetamaskPrefix, aesMode: String = "aes-128-cbc") throws {
110+
public init?(seed: Data, password: String, prefixPath: String = HDNode.defaultPathMetamaskPrefix, aesMode: String = "aes-128-cbc") throws {
111111
addressStorage = PathAddressStorage()
112112
guard let rootNode = HDNode(seed: seed)?.derive(path: prefixPath, derivePrivateKey: true) else { return nil }
113113
self.rootPrefix = prefixPath

0 commit comments

Comments
 (0)