Skip to content

Commit

Permalink
derive: fix merklize strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Nov 2, 2024
1 parent c8bb6f1 commit 86bfd8b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions commit_verify/derive/src/derive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ impl CommitDerive {
engine.commit_to_serialized(self.as_inner());
},
StrategyAttr::Merklize => quote! {
use amplify::Wrapper;
engine.commit_to_merkle(self.as_inner().merklize());
engine.commit_to_merkle(self);
},
};

Expand Down

0 comments on commit 86bfd8b

Please sign in to comment.