Skip to content

Commit

Permalink
Fix Ktlint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
HonzaR committed Oct 23, 2024
1 parent fdd3fb5 commit 968afa4
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@ class RustDerivationTool private constructor() : Derivation {
seed: ByteArray,
networkId: Int,
accountIndex: Int
): ByteArray = deriveArbitraryAccountKeyFromSeed(contextString, seed, accountIndex = accountIndex, networkId = networkId)
): ByteArray =
deriveArbitraryAccountKeyFromSeed(
contextString = contextString,
seed = seed,
accountIndex = accountIndex,
networkId = networkId
)

companion object {
suspend fun new(): Derivation {
Expand Down

0 comments on commit 968afa4

Please sign in to comment.