Skip to content

Commit

Permalink
add slot filed
Browse files Browse the repository at this point in the history
  • Loading branch information
mmc committed May 9, 2024
1 parent 5577415 commit f286d3a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions internal/logic/solxen.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,14 @@ func (l *Producer) Mint() error {
if err != nil {
return err
}
logx.Infof("slot:%v account:%v nonce:%v hashes:%v superhashes:%v balance:%v t:%v",
recent.Context.Slot,
logx.Infof("account:%v slot:%v nonce:%v hashes:%v superhashes:%v balance:%v t:%v",
account.PublicKey(),
common.Bytes2Hex(globalXnRecordNew.Nonce[:]), userXnRecord.Hashes, userXnRecord.Superhashes,
userTokenBalance.Value.UiAmountString, time.Since(t))
recent.Context.Slot,
common.Bytes2Hex(globalXnRecordNew.Nonce[:]),
userXnRecord.Hashes,
userXnRecord.Superhashes,
userTokenBalance.Value.UiAmountString,
time.Since(t))

return nil

Expand Down

0 comments on commit f286d3a

Please sign in to comment.