From 040c067aac47d855284a90f9357d1f6b8d872cfd Mon Sep 17 00:00:00 2001 From: Mononaut Date: Tue, 8 Oct 2024 02:49:46 +0000 Subject: [PATCH] fix rune edict wrong id type bug --- frontend/src/app/shared/ord/rune.utils.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frontend/src/app/shared/ord/rune.utils.ts b/frontend/src/app/shared/ord/rune.utils.ts index c36f3ef06..c23a55264 100644 --- a/frontend/src/app/shared/ord/rune.utils.ts +++ b/frontend/src/app/shared/ord/rune.utils.ts @@ -154,10 +154,7 @@ function integersToMessage(integers: bigint[]): Message { const amount = integers.shift(); const output = integers.shift(); message.edicts.push({ - id: { - block: height, - index: txIndex, - }, + id: new RuneId(Number(height), Number(txIndex)), amount, output, });