We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b5e89c commit 9575370Copy full SHA for 9575370
modules/abstract-lightning/src/codecs/api/transaction.ts
@@ -52,8 +52,6 @@ export const Transaction = t.intersection(
52
id: t.string,
53
normalizedTxHash: t.string,
54
blockHeight: t.number,
55
- blockHash: t.string,
56
- blockPosition: t.number,
57
inputIds: t.array(t.string),
58
entries: t.array(TransactionEntry),
59
inputs: t.array(Output),
@@ -66,6 +64,8 @@ export const Transaction = t.intersection(
66
64
confirmations: t.number,
67
65
}),
68
t.partial({
+ blockHash: t.string,
+ blockPosition: t.number,
69
label: t.string,
70
71
],
0 commit comments