Skip to content

Commit

Permalink
Signature Table Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arietrouw committed Nov 7, 2024
1 parent 1e29712 commit 6c41171
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const signatureDataFromBoundWitness = (boundWitness: BoundWitness) => {
for (let i = 0; i < boundWitness.addresses.length; i++) {
result.push({
address: boundWitness.addresses[i],
previous_hash: boundWitness.previous_hashes[i],
signature: boundWitness.$meta.signatures?.[i],
previous_hash: boundWitness.previous_hashes?.[i],
signature: boundWitness.$meta?.signatures?.[i] ?? [],
})
}
return result
Expand Down

0 comments on commit 6c41171

Please sign in to comment.