Skip to content

Commit c19097a

Browse files
committed
clippy: fix needless_continue lint
1 parent 2192bef commit c19097a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/blind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ impl Transaction {
10041004
];
10051005
for (amt, asset) in &arr {
10061006
match amt {
1007-
Value::Null => continue,
1007+
Value::Null => {},
10081008
Value::Explicit(v) => {
10091009
let gen = Generator::new_unblinded(secp, asset.into_tag());
10101010
domain.push(gen);

0 commit comments

Comments
 (0)