Skip to content

Commit

Permalink
test error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
cong-or committed May 3, 2024
1 parent 5ee5351 commit 9dfee2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catalyst-gateway/bin/src/cardano/cip36_registration/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ impl Cip36Metadata {

if let Some(raw_61284) = raw_61284 {
let _ = validate_signature(&raw_61284, &registration, &signature).map_or_else(
|err| {
errors_report.push(format!("cannot validate signature {err}"));
|_err| {
//errors_report.push(format!("cannot validate signature {err}"));
None
},
Some,
Expand Down

0 comments on commit 9dfee2c

Please sign in to comment.