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.
2 parents 04c1cda + 9575370 commit 1dedc91Copy full SHA for 1dedc91
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