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.
1 parent 8c6590e commit b93920eCopy full SHA for b93920e
pkg/code/server/grpc/transaction/v2/swap.go
@@ -4,6 +4,7 @@ import (
4
"bytes"
5
"context"
6
"crypto/ed25519"
7
+ "encoding/base64"
8
"time"
9
10
"github.com/mr-tron/base58"
@@ -373,7 +374,7 @@ func (s *transactionServer) Swap(streamer transactionpb.Transaction_SwapServer)
373
374
)
375
}
376
- log.Debug("submitted transaction")
377
+ log.WithField("txn", base64.StdEncoding.EncodeToString(txn.Marshal())).Info("transaction submitted")
378
379
err = s.bestEffortNotifyUserOfSwapInProgress(ctx, owner)
380
if err != nil {
0 commit comments