Skip to content

Commit

Permalink
Merge pull request #212 from dawiddr/expose-words
Browse files Browse the repository at this point in the history
Expose BIP39 words and separator
  • Loading branch information
BaldyAsh committed Aug 26, 2019
2 parents 2e30580 + fae812c commit e35389a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/web3swift/KeystoreManager/BIP39.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public enum BIP39Language {
case french
case italian
case spanish
var words: [String] {
public var words: [String] {
switch self {
case .english:
return englishWords
Expand All @@ -36,7 +36,7 @@ public enum BIP39Language {
return spanishWords
}
}
var separator: String {
public var separator: String {
switch self {
case .japanese:
return "\u{3000}"
Expand Down

0 comments on commit e35389a

Please sign in to comment.