Skip to content

Commit afccc42

Browse files
authored
rename batch_add -> batch_addition (#284)
1 parent d9e0e13 commit afccc42

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cryptography/bls12_381/src/batch_add.rs cryptography/bls12_381/src/batch_addition.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ pub fn multi_batch_addition_binary_tree_stride(
202202
#[cfg(test)]
203203
mod tests {
204204

205-
use crate::batch_add::{
205+
use crate::batch_addition::{
206206
batch_addition_binary_tree_stride, multi_batch_addition_binary_tree_stride,
207207
};
208208

cryptography/bls12_381/src/fixed_base_msm_window.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::{
2-
batch_add::multi_batch_addition_binary_tree_stride, booth_encoding::get_booth_index,
2+
batch_addition::multi_batch_addition_binary_tree_stride, booth_encoding::get_booth_index,
33
g1_batch_normalize, G1Projective, Scalar,
44
};
55
use blstrs::G1Affine;

cryptography/bls12_381/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pub mod batch_add;
1+
pub mod batch_addition;
22
pub mod batch_inversion;
33
mod booth_encoding;
44
pub mod fixed_base_msm;

0 commit comments

Comments
 (0)