Merge pull request #5359 from yaohcn/jk

correct log in maybeUseAddress
This commit is contained in:
Łukasz Magiera 2021-01-19 11:48:40 +01:00 committed by GitHub
commit 0579aecac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,6 +131,6 @@ func maybeUseAddress(ctx context.Context, a addrSelectApi, addr address.Address,
*bestAvail = b
}
log.Warnw("address didn't have enough funds for window post message", "address", addr, "required", types.FIL(goodFunds), "balance", types.FIL(b))
log.Warnw("address didn't have enough funds to send message", "address", addr, "required", types.FIL(goodFunds), "balance", types.FIL(b))
return false
}