Skip to content

Commit

Permalink
Merge pull request #2786 from OffchainLabs/default-test-scheme
Browse files Browse the repository at this point in the history
change default scheme used in tests to HashScheme
  • Loading branch information
eljobe authored Nov 15, 2024
2 parents 57ce64f + bc2683f commit bcb2c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/testhelpers/env/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
// An environment variable controls that behavior.
func GetTestStateScheme() string {
envTestStateScheme := os.Getenv("TEST_STATE_SCHEME")
stateScheme := rawdb.PathScheme
stateScheme := rawdb.HashScheme
if envTestStateScheme == rawdb.PathScheme || envTestStateScheme == rawdb.HashScheme {
stateScheme = envTestStateScheme
}
Expand Down

0 comments on commit bcb2c64

Please sign in to comment.