Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #21 from tiki/release/1.0.4
Browse files Browse the repository at this point in the history
fix: ptr record deserialization
  • Loading branch information
mike-audi authored Apr 1, 2023
2 parents ff26afc + 07843b8 commit 3d84ca6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "l0-storage-upload",
"version": "1.0.3",
"version": "1.0.4",
"description": "Cloudflare worker for uploading blocks to TIKI's L0 Storage Service",
"main": "lib/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/l0/index/l0-index-req-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function toTitle(
contents: Array<Uint8Array>
): L0IndexReqTitle {
const jsonTags = Block.toUtf8(contents[4]);
const ptr = Block.toUtf8(contents[4]);
const ptr = Block.toUtf8(contents[1]);
return {
transaction: id,
address,
Expand Down

0 comments on commit 3d84ca6

Please sign in to comment.