Skip to content

Commit

Permalink
Merge pull request #4654 from oasisprotocol/yawning/stable/22.1.x/bac…
Browse files Browse the repository at this point in the history
…kport-4653

[BACKPORT/22.1.x]: go/consensus/api/transactions: Fix OpenRawTransactions
  • Loading branch information
Yawning committed Apr 7, 2022
2 parents d3188e6 + ef11fb8 commit 250bdb0
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 250bdb0

Please sign in to comment.