paychmgr: Review comments

Co-authored-by: Hannah Howard <hannah@hannahhoward.net>
Co-authored-by: dirkmc <dirkmdev@gmail.com>
This commit is contained in:
Łukasz Magiera 2022-02-14 20:07:13 +01:00 committed by GitHub
parent f61eb23f8f
commit df5bd147fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -866,7 +866,7 @@ type ChannelAvailableFunds struct {
PendingAmt types.BigInt
// AvailableAmt is part of ConfirmedAmt that is available for use (pre-allocated)
AvailableAmt types.BigInt
// PendingAvailableAmt is the amount of available funds that are pending confirmation on-chain
// PendingAvailableAmt is the amount of funds that are pending confirmation on-chain that will become available once confirmed
PendingAvailableAmt types.BigInt
// PendingWaitSentinel can be used with PaychGetWaitReady to wait for
// confirmation of pending funds

View File

@ -121,7 +121,7 @@
# env var: LOTUS_CLIENT_SIMULTANEOUSTRANSFERSFORRETRIEVAL
#SimultaneousTransfersForRetrieval = 20
# Require that retrievals perform no on-chain retrievals. Paid retrievals
# Require that retrievals perform no on-chain operations. Paid retrievals
# without existing payment channels with available funds will fail instead
# of automatically performing on-chain operations.
#

View File

@ -388,7 +388,7 @@ type Client struct {
// and storage providers for retrieval deals
SimultaneousTransfersForRetrieval uint64
// Require that retrievals perform no on-chain retrievals. Paid retrievals
// Require that retrievals perform no on-chain operations. Paid retrievals
// without existing payment channels with available funds will fail instead
// of automatically performing on-chain operations.
OffChainRetrieval bool