File tree Expand file tree Collapse file tree 5 files changed +13
-9
lines changed Expand file tree Collapse file tree 5 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 88
88
uses : actions-rs/toolchain@v1
89
89
with :
90
90
profile : minimal
91
- toolchain : stable
91
+ # TODO: Update to stable once wasmer supports it
92
+ toolchain : 1.82.0
92
93
override : true
93
94
- uses : Swatinem/rust-cache@v2
94
95
- name : Install Dependencies
Original file line number Diff line number Diff line change 94
94
uses : actions-rs/toolchain@v1
95
95
with :
96
96
profile : minimal
97
- toolchain : stable
97
+ # TODO: Update to stable once wasmer supports it
98
+ toolchain : 1.82.0
98
99
override : true
99
100
- uses : Swatinem/rust-cache@v2
100
101
- name : Install dependencies
Original file line number Diff line number Diff line change @@ -157,10 +157,10 @@ impl ProcessArg for *mut RLN {
157
157
}
158
158
}
159
159
160
- /// Buffer struct is taken from
161
- /// <https://github.com/celo-org/celo-threshold-bls-rs/blob/master/crates/threshold-bls-ffi/src/ffi.rs>
162
- ///
163
- /// Also heavily inspired by <https://github.com/kilic/rln/blob/master/src/ffi.rs>
160
+ ///// Buffer struct is taken from
161
+ ///// <https://github.com/celo-org/celo-threshold-bls-rs/blob/master/crates/threshold-bls-ffi/src/ffi.rs>
162
+ /////
163
+ ///// Also heavily inspired by <https://github.com/kilic/rln/blob/master/src/ffi.rs>
164
164
165
165
#[ repr( C ) ]
166
166
#[ derive( Clone , Debug , PartialEq ) ]
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ use std::{
8
8
} ;
9
9
10
10
////////////////////////////////////////////////////////////
11
- /// Full Merkle Tree Implementation
11
+ ///// Full Merkle Tree Implementation
12
12
////////////////////////////////////////////////////////////
13
13
14
14
/// Merkle tree with all leaf and intermediate hashes stored
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use std::str::FromStr;
6
6
use std:: { cmp:: max, fmt:: Debug } ;
7
7
8
8
////////////////////////////////////////////////////////////
9
- /// Optimal Merkle Tree Implementation
9
+ ///// Optimal Merkle Tree Implementation
10
10
////////////////////////////////////////////////////////////
11
11
12
12
/// The Merkle tree structure
@@ -55,7 +55,9 @@ impl FromStr for OptimalMerkleConfig {
55
55
}
56
56
}
57
57
58
- /// Implementations
58
+ ////////////////////////////////////////////////////////////
59
+ ///// Implementations
60
+ ////////////////////////////////////////////////////////////
59
61
60
62
impl < H : Hasher > ZerokitMerkleTree for OptimalMerkleTree < H >
61
63
where
You can’t perform that action at this time.
0 commit comments