Move RingCT code to a deciated folder

Should help keep things ordered as more RingCT code is added.
This commit is contained in:
Luke Parker
2022-05-22 02:24:24 -04:00
parent 790e89902a
commit cc65b6e055
9 changed files with 141 additions and 132 deletions

View File

@@ -21,9 +21,14 @@ use frost::FrostError;
use crate::{
Commitment,
random_scalar,
generate_key_image, bulletproofs::Bulletproofs, clsag::{ClsagError, ClsagInput, Clsag},
generate_key_image,
ringct::{
clsag::{ClsagError, ClsagInput, Clsag},
bulletproofs::Bulletproofs,
RctBase, RctPrunable, RctSignatures
},
transaction::{Input, Output, TransactionPrefix, Transaction},
rpc::{Rpc, RpcError},
transaction::*,
wallet::{SpendableOutput, Decoys, key_image_sort, uniqueness, shared_key, commitment_mask, amount_encryption}
};
#[cfg(feature = "multisig")]