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 8888 uses : actions-rs/toolchain@v1
8989 with :
9090 profile : minimal
91- toolchain : stable
91+ # TODO: Update to stable once wasmer supports it
92+ toolchain : 1.82.0
9293 override : true
9394 - uses : Swatinem/rust-cache@v2
9495 - name : Install Dependencies
Original file line number Diff line number Diff line change 9494 uses : actions-rs/toolchain@v1
9595 with :
9696 profile : minimal
97- toolchain : stable
97+ # TODO: Update to stable once wasmer supports it
98+ toolchain : 1.82.0
9899 override : true
99100 - uses : Swatinem/rust-cache@v2
100101 - name : Install dependencies
Original file line number Diff line number Diff line change @@ -157,10 +157,10 @@ impl ProcessArg for *mut RLN {
157157 }
158158}
159159
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>
164164
165165#[ repr( C ) ]
166166#[ derive( Clone , Debug , PartialEq ) ]
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ use std::{
88} ;
99
1010////////////////////////////////////////////////////////////
11- /// Full Merkle Tree Implementation
11+ ///// Full Merkle Tree Implementation
1212////////////////////////////////////////////////////////////
1313
1414/// 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;
66use std:: { cmp:: max, fmt:: Debug } ;
77
88////////////////////////////////////////////////////////////
9- /// Optimal Merkle Tree Implementation
9+ ///// Optimal Merkle Tree Implementation
1010////////////////////////////////////////////////////////////
1111
1212/// The Merkle tree structure
@@ -55,7 +55,9 @@ impl FromStr for OptimalMerkleConfig {
5555 }
5656}
5757
58- /// Implementations
58+ ////////////////////////////////////////////////////////////
59+ ///// Implementations
60+ ////////////////////////////////////////////////////////////
5961
6062impl < H : Hasher > ZerokitMerkleTree for OptimalMerkleTree < H >
6163where
You can’t perform that action at this time.
0 commit comments