fix: reverse Memo reply parent txid byte order

This commit is contained in:
9z25
2026-07-16 09:05:56 -07:00
parent e232a47ff9
commit 7f54613c55
+5 -1
View File
@@ -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) {