Skip to content

Commit

Permalink
accounts/keystore: assign schema as const instead of var (#16985)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvisa authored and karalabe committed Jun 14, 2018
1 parent 897ea01 commit c95e4a8
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 c95e4a8

Please sign in to comment.