Skip to content

Commit

Permalink
go/consensus/api/transactions: Fix OpenRawTransactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Yawning committed Apr 7, 2022
1 parent d3188e6 commit ef11fb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .changelog/4653.trivial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
go/consensus/api/transactions: Fix OpenRawTransactions
2 changes: 1 addition & 1 deletion go/consensus/api/transaction/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ func OpenRawTransactions(rawTxBytes [][]byte) ([]signature.PublicKey, []*Transac
verifier.Add(
publicKeys[i],
SignatureContext,
signedTxes[i].Signed.Signature.Signature[:],
signedTxes[i].Signed.Blob,
signedTxes[i].Signed.Signature.Signature[:],
)
default:
verifier.AddError(err)
Expand Down

0 comments on commit ef11fb8

Please sign in to comment.