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

A temporary hack until fixed #73

Closed
wants to merge 1 commit into from
Closed
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: 1 addition & 1 deletion bandersnatch_vrfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "bandersnatch_vrfs"
description = "Ring VRFs and thin VRF on bandersnatch"
authors = ["Jeff Burdges <[email protected]>"]
version = "0.0.3"
version = "0.0.4"
repository = "https://github.com/w3f/ring-vrf/tree/master/bandersnatch_vrfs"
edition = "2021"
license = "MIT/Apache-2.0"
Expand Down
4 changes: 3 additions & 1 deletion bandersnatch_vrfs/src/ring.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ impl KZG {
}

pub fn max_keyset_size(&self) -> usize {
self.piop_params.keyset_part_size
// Hack until we fix https://github.com/w3f/ring-proof/commit/d6bd529b9d08d2c11dfe0495556932be28dbf3bf#diff-d9afcebbe3d5a30f85085cf7ce661ad8f581ae8412b4df7e3a884ff9ccbdb472R20
800
// self.piop_params.keyset_part_size
}

/*
Expand Down