Skip to content

Commit 7b7bf92

Browse files
Merge pull request #842 from filecoin-project/hotfix/decrease-post-sectors-count
backport hotfix branch into master
2 parents db7c602 + 534d37e commit 7b7bf92

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.circleci/config.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,10 +352,14 @@ workflows:
352352
- cargo_fetch
353353
filters:
354354
branches:
355-
only: master
355+
only:
356+
- master
357+
- /hotfix.*/
356358
- build_darwin_release:
357359
requires:
358360
- cargo_fetch
359361
filters:
360362
branches:
361-
only: master
363+
only:
364+
- master
365+
- /hotfix.*/

filecoin-proofs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "filecoin-proofs"
33
description = "The Filecoin specific aspects of storage-proofs, including a C based FFI, to generate and verify proofs."
4-
version = "0.6.2"
4+
version = "0.6.4"
55
authors = ["dignifiedquire <dignifiedquire@gmail.com>", "laser <l@s3r.com>", "porcuquine <porcuquine@users.noreply.github.com>"]
66
license = "MIT OR Apache-2.0"
77
edition = "2018"

filecoin-proofs/parameters.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"v11-vdf-post-7734b138d16b609af122a44c8105ec323810a40eb743479f7127a14630ae407f.params": {
2+
"v11-vdf-post-6142c5095dcab8adf8698aaea24eac78035e3fefe6503b3e2f80758e4c948639.params": {
33
"cid": "QmYS9NmkfVtZCtQPF18uQBeWfajF5YRKKkDPXpVR6pzzP4",
44
"digest": "43008a8c945076a08aa2e7c4785241de",
55
"sector_size": 1024
66
},
7-
"v11-vdf-post-7734b138d16b609af122a44c8105ec323810a40eb743479f7127a14630ae407f.vk": {
7+
"v11-vdf-post-6142c5095dcab8adf8698aaea24eac78035e3fefe6503b3e2f80758e4c948639.vk": {
88
"cid": "QmTXenYSVvEz2yEJ1deCobfQBVgykkigBuvWJCzTM5tmC2",
99
"digest": "73b49d9cf0ba983b3e861da0e0ee2e2a",
1010
"sector_size": 1024
1111
},
12-
"v11-vdf-post-fcc91dc272c9e6dfc906ff56cf65c412340b02fdef60b8132610bbe1dce61b20.params": {
12+
"v11-vdf-post-71ca99ebb6212e45b2affa16eb6e1f671c37986e84ee8b9edbf924ab45b5fdfe.params": {
1313
"cid": "Qmc3R5xmapcSGKGR9zRC2fyPo3QuAuChtsKwswE6NZ6QMQ",
1414
"digest": "8091b735d254982b0b62e712bab82139",
1515
"sector_size": 268435456
1616
},
17-
"v11-vdf-post-fcc91dc272c9e6dfc906ff56cf65c412340b02fdef60b8132610bbe1dce61b20.vk": {
17+
"v11-vdf-post-71ca99ebb6212e45b2affa16eb6e1f671c37986e84ee8b9edbf924ab45b5fdfe.vk": {
1818
"cid": "QmeD4mdJFPjsWouBPPwvm6iVFYG8bpqNYetd2Ux7PoZawz",
1919
"digest": "32784464acc85a662ea16ecf5aba931d",
2020
"sector_size": 268435456

filecoin-proofs/src/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use storage_proofs::util::NODE_SIZE;
22

3-
pub const POST_SECTORS_COUNT: usize = 512;
3+
pub const POST_SECTORS_COUNT: usize = 4;
44
pub const POREP_MINIMUM_CHALLENGES: usize = 12; // FIXME: 8,000
55
pub const SINGLE_PARTITION_PROOF_LEN: usize = 192;
66

0 commit comments

Comments
 (0)