We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6454107 commit ca06b56Copy full SHA for ca06b56
server/services/v1/comments/create.go
@@ -776,12 +776,12 @@ func updateSupportInfoAttempt(request *createRequest, retry bool) error {
776
if err != nil {
777
return err
778
}
779
- txSummary, err := lbry.SDK.GetTx(request.comment.TXID.String)
+ txSummary, err := lbry.SDK.GetTx(*request.args.SupportTxID)
780
781
return errors.Err(err)
782
783
if txSummary == nil {
784
- return errors.Err("transaction not found for txid %s", request.comment.TXID.String)
+ return errors.Err("transaction not found for txid %s", *request.args.SupportTxID)
785
786
var vout uint64
787
if request.args.SupportVout != nil {
0 commit comments