Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Property tests for kv snapshot #1928

Merged
merged 8 commits into from
May 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,5 @@ __pycache__
docker-compose.dev.yml
/build
*.tmp

/ethdb/*.fail
2 changes: 1 addition & 1 deletion eth/stagedsync/stage_headers_new.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func HeadersForward(

var peer []byte
stopped := false
timer := time.NewTimer(1 * time.Second) // Check periodically even in the absence of incoming messages
var timer *time.Timer // Check periodically even in the absence of incoming messages
prevProgress := headerProgress

// FIXME: remove this hack
Expand Down
2 changes: 1 addition & 1 deletion ethdb/kv_mdbx.go
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ func (tx *MdbxTx) PrintDebugInfo() {
}
}

func (tx *MdbxTx) get(dbi mdbx.DBI, key []byte) ([]byte, error) {
func (tx *MdbxTx) get(dbi mdbx.DBI, key []byte) ([]byte, error) { //nolint: unused
return tx.tx.Get(dbi, key)
}

Expand Down
Loading