Skip to content

Commit

Permalink
accounts/keystore: assign schema as const instead of var (ethereum#16985
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jsvisa authored and firmianavan committed Aug 28, 2018
1 parent e72764f commit 35b738c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accounts/keystore/keystore.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var (
var KeyStoreType = reflect.TypeOf(&KeyStore{})

// KeyStoreScheme is the protocol scheme prefixing account and wallet URLs.
var KeyStoreScheme = "keystore"
const KeyStoreScheme = "keystore"

// Maximum time between wallet refreshes (if filesystem notifications don't work).
const walletRefreshCycle = 3 * time.Second
Expand Down

0 comments on commit 35b738c

Please sign in to comment.