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 kielbarry committed Jul 9, 2018
1 parent dfaa4f0 commit 7adcf1f
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 7adcf1f

Please sign in to comment.