[#326] ir: Add debug message about transfer for audit transaction
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
d4bd726c25
commit
819300f939
1 changed files with 12 additions and 4 deletions
|
@ -167,11 +167,15 @@ func (a auditSettlementDeps) ResolveKey(ni audit.NodeInfo) (*owner.ID, error) {
|
||||||
var transferAuditDetails = []byte("settlement-audit")
|
var transferAuditDetails = []byte("settlement-audit")
|
||||||
|
|
||||||
func (a auditSettlementDeps) Transfer(sender, recipient *owner.ID, amount *big.Int) {
|
func (a auditSettlementDeps) Transfer(sender, recipient *owner.ID, amount *big.Int) {
|
||||||
if !amount.IsInt64() {
|
log := a.log.With(
|
||||||
a.log.Error("amount can not be represented as an int64",
|
zap.Stringer("sender", sender),
|
||||||
zap.Stringer("value", amount),
|
zap.Stringer("recipient", recipient),
|
||||||
|
zap.Stringer("amount (GASe-12)", amount),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if !amount.IsInt64() {
|
||||||
|
a.log.Error("amount can not be represented as an int64")
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -181,8 +185,12 @@ func (a auditSettlementDeps) Transfer(sender, recipient *owner.ID, amount *big.I
|
||||||
To: recipient,
|
To: recipient,
|
||||||
Details: transferAuditDetails,
|
Details: transferAuditDetails,
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
a.log.Error("transfer of funds for audit failed",
|
log.Error("could not send transfer transaction for audit",
|
||||||
zap.String("error", err.Error()),
|
zap.String("error", err.Error()),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log.Debug("transfer transaction for audit was successfully sent")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue