Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Oct 4, 2024
1 parent 05db002 commit 089c877
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ jobs:
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
- name: test & coverage report creation
run: |
nix develop -c make test
nix develop -c make test-memiavl
nix develop -c make test-store
nix develop .#rocksdb -c make test-versiondb
if: steps.changed-files.outputs.any_changed == 'true'
- name: filter out proto files
Expand Down
2 changes: 1 addition & 1 deletion memiavl/tree.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func (t *Tree) SaveVersion(updateHash bool) ([]byte, int64, error) {
hash = t.RootHash()
}

t.version++
t.version = t.version + 1
return hash, int64(t.version), nil
}

Expand Down

0 comments on commit 089c877

Please sign in to comment.