Skip to content

Commit

Permalink
Merge pull request #6524 from filecoin-project/feat/proofs-v8.0.2
Browse files Browse the repository at this point in the history
Update to proofs v8.0.2 with correct aggregate lengths
  • Loading branch information
magik6k authored Jun 18, 2021
2 parents 00372e1 + 738ac92 commit 085cabc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ BUILD_DEPS+=build/.filecoin-install
CLEAN+=build/.filecoin-install

ffi-version-check:
@[[ "$$(awk '/const Version/{print $$5}' extern/filecoin-ffi/version.go)" -eq 2 ]] || (echo "FFI version mismatch, update submodules"; exit 1)
@[[ "$$(awk '/const Version/{print $$5}' extern/filecoin-ffi/version.go)" -eq 3 ]] || (echo "FFI version mismatch, update submodules"; exit 1)
BUILD_DEPS+=ffi-version-check

.PHONY: ffi-version-check
Expand Down
2 changes: 1 addition & 1 deletion extern/filecoin-ffi
Submodule filecoin-ffi updated 2 files
+27 −27 rust/Cargo.lock
+1 −1 version.go
1 change: 1 addition & 0 deletions extern/sector-storage/ffiwrapper/sealer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,7 @@ func TestSealAndVerifyAggregate(t *testing.T) {

avi.Proof, err = ProofProver.AggregateSealProofs(avi, toAggregate)
require.NoError(t, err)
require.Len(t, avi.Proof, 11188)

aggDone := time.Now()

Expand Down

0 comments on commit 085cabc

Please sign in to comment.