Updated on 2026-08-14
This commit is contained in:
parent
b27e8171fb
commit
4ea8243da3
19 changed files with 375 additions and 126 deletions
|
|
@ -95,6 +95,14 @@ data class Network(
|
|||
data object None : DerivationPath() {
|
||||
override val value: String? get() = null
|
||||
}
|
||||
|
||||
fun copySealed(value: String): DerivationPath {
|
||||
return when (this) {
|
||||
is Card -> Card(value)
|
||||
is Custom -> Custom(value)
|
||||
None -> None
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue