Skip to content

Commit 5367eed

Browse files
formatting
1 parent 4f23206 commit 5367eed

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

wasm/src/types/boolean.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use crate::{
2020
to_bits_array_le,
2121
types::native::{BooleanNative, LiteralNative, PlaintextNative},
2222
};
23-
use snarkvm_console::prelude::{FromBits, FromBytes, ToBits, ToBytes, Zero};
23+
use snarkvm_console::prelude::{FromBits, FromBytes, ToBits, ToBytes};
2424
use snarkvm_wasm::utilities::Uniform;
2525

2626
use js_sys::{Array, Uint8Array};
@@ -33,7 +33,6 @@ use wasm_bindgen::prelude::*;
3333
#[derive(Clone, Debug, Eq, PartialEq)]
3434
pub struct Boolean(BooleanNative);
3535

36-
3736
#[wasm_bindgen]
3837
impl Boolean {
3938
/// Creates a Boolean from a native JS bool.
@@ -140,7 +139,6 @@ impl Boolean {
140139
pub fn equals(&self, other: &Boolean) -> bool {
141140
self.0 == BooleanNative::from(other)
142141
}
143-
144142
}
145143

146144
impl Deref for Boolean {

0 commit comments

Comments
 (0)