Skip to content

Commit

Permalink
Fixed pattern match
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrokonrad committed Jul 20, 2023
1 parent a203358 commit 429ab3e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @generated file from wasmbuild -- do not edit
// deno-lint-ignore-file
// deno-fmt-ignore-file
// source-hash: 1eb0df92c50ad487c116dfbcc91d498f1578c799
// source-hash: ab17726f2df5571be15d036e67423022ed8f63e4
let wasm;

const cachedTextDecoder = new TextDecoder("utf-8", {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @generated file from wasmbuild -- do not edit
// deno-lint-ignore-file
// deno-fmt-ignore-file
// source-hash: 1eb0df92c50ad487c116dfbcc91d498f1578c799
// source-hash: ab17726f2df5571be15d036e67423022ed8f63e4

let imports = {};
imports["__wbindgen_placeholder__"] = module.exports;
Expand Down
5 changes: 0 additions & 5 deletions src/core/libs/cardano_multiplatform_lib/src/serialization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4437,11 +4437,6 @@ impl Deserialize for ProtocolParamUpdate {
.map_err(|e| e.annotate("drep_deposit"))?,
);
}
unknown_key => {
return Err(
DeserializeFailure::UnknownKey(Key::Uint(unknown_key)).into()
)
}
32 => {
if drep_inactivity_period.is_some() {
return Err(DeserializeFailure::DuplicateKey(Key::Uint(32)).into());
Expand Down

0 comments on commit 429ab3e

Please sign in to comment.