Skip to content

Commit

Permalink
Merge pull request #263 from m1n999999/main
Browse files Browse the repository at this point in the history
ExUnit Calculation difference between Aiken's VM and Ogmios
  • Loading branch information
alessandrokonrad authored Nov 27, 2024
2 parents 3fc9f99 + 65ac7f5 commit 4cb9653
Show file tree
Hide file tree
Showing 9 changed files with 178 additions and 124 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2516,7 +2516,7 @@ export class HeaderMap {
* @returns {Label | undefined}
*/
content_type() {
const ret = wasm.headermap_content_type(this.ptr);
const ret = wasm.cosekey_algorithm_id(this.ptr);
return ret === 0 ? undefined : Label.__wrap(ret);
}
/**
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2544,7 +2544,7 @@ class HeaderMap {
* @returns {Label | undefined}
*/
content_type() {
const ret = wasm.headermap_content_type(this.ptr);
const ret = wasm.cosekey_algorithm_id(this.ptr);
return ret === 0 ? undefined : Label.__wrap(ret);
}
/**
Expand Down
Loading

0 comments on commit 4cb9653

Please sign in to comment.