mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-26 11:06:00 +03:00
blake2s unwrap muts
This commit is contained in:
parent
da52984385
commit
ca549258b8
@ -31,7 +31,8 @@ use snarkvm_models::{
|
|||||||
|
|
||||||
pub struct Blake2s;
|
pub struct Blake2s;
|
||||||
|
|
||||||
fn unwrap_argument<F: Field + PrimeField, G: GroupType<F>>(arg: ConstrainedValue<F, G>) -> Vec<UInt8> {
|
fn unwrap_argument<F: Field + PrimeField, G: GroupType<F>>(mut arg: ConstrainedValue<F, G>) -> Vec<UInt8> {
|
||||||
|
arg.get_inner_mut();
|
||||||
if let ConstrainedValue::Array(args) = arg {
|
if let ConstrainedValue::Array(args) = arg {
|
||||||
assert_eq!(args.len(), 32); // asg enforced
|
assert_eq!(args.len(), 32); // asg enforced
|
||||||
args.into_iter()
|
args.into_iter()
|
||||||
|
Loading…
Reference in New Issue
Block a user