Open
Description
Trying to use LND to broadcast a raw transaction, using the walletkit rpc PublishTransaction.
No matter what I do, LND doesn't seem to be able to see the transaction, looking at the logs I see this:
2025-01-14 09:53:16.932 [ERR] RPCS: [/walletrpc.WalletKit/PublishTransaction]: must provide a transaction to publish
2025-01-14 09:53:16.932 [ERR] RPCS: [/walletrpc.WalletKit/PublishTransaction]: unexpected EOF
Here's how I tried to publish a transaction:
const rpc = await publishLndTransaction(
create(TransactionSchema, {
txHex: Buffer.from(rawTx),
label,
}),
);
and also like this:
const rpc = await publishLndTransaction({
txHex: Buffer.from(rawTx),
label,
});
Metadata
Metadata
Assignees
Labels
No labels
Activity