From 7f54613c559b934af80d4fb34a970e84c2550546 Mon Sep 17 00:00:00 2001 From: 9z25 Date: Thu, 16 Jul 2026 09:05:56 -0700 Subject: [PATCH] fix: reverse Memo reply parent txid byte order --- src/use-cases/action-types/helpers.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/use-cases/action-types/helpers.js b/src/use-cases/action-types/helpers.js index 6a65987..4d7240d 100644 --- a/src/use-cases/action-types/helpers.js +++ b/src/use-cases/action-types/helpers.js @@ -47,7 +47,11 @@ export function normalizeTwoPushMemoDatas (pushDatas) { export function txHashFromPush (buf) { if (!buf || buf.length !== 32) return null - return buf.toString('hex') + + return Buffer + .from(buf) + .reverse() + .toString('hex') } export function followKey (followerAddr, followeeAddr) {