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
gzliudan committed Jan 4, 2025
1 parent 0be73a8 commit 7f3bd15
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 @@ -49,7 +49,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 7f3bd15

Please sign in to comment.