Skip to content

Commit 7aa9e11

Browse files
author
Jiri Malek
committed
Fix withdrawal shift log record.
1 parent e29a4d0 commit 7aa9e11

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

internal/repository/db/withdrawal.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,10 @@ func (db *MongoDbBridge) shiftClosedWithdrawRequest(col *mongo.Collection, wr *t
156156

157157
// shift successful, log what we did
158158
db.log.Infof("shifted withdrawal request ID %s to %s of delegation %s to %d",
159-
wr.Address.String(),
160-
wr.StakerID.ToInt().Uint64(),
161159
wr.WithdrawRequestID.String(),
162160
reqID,
163-
wr.RequestTrx.String())
161+
wr.Address.String(),
162+
wr.StakerID.ToInt().Uint64())
164163
return true, nil
165164
}
166165

0 commit comments

Comments
 (0)