We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wallet market withdraw
wallet market withdraw currently attempts to withdraw funds from the storage market actor regardless of how much is reserved by ongoing deals.
It should instead use FundManager.Withdraw() so as to not withdraw an amount that would cause deals to run into funding issues.
FundManager.Withdraw()
Probably it make sense to add a WalletWithdraw(ctx, from, addr, amt) API endpoint, implemented in https://github.com/filecoin-project/lotus/blob/master/node/impl/full/wallet.go
WalletWithdraw(ctx, from, addr, amt)
The text was updated successfully, but these errors were encountered:
Thumbs up on my end.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
wallet market withdraw
currently attempts to withdraw funds from the storage market actor regardless of how much is reserved by ongoing deals.It should instead use
FundManager.Withdraw()
so as to not withdraw an amount that would cause deals to run into funding issues.Probably it make sense to add a
WalletWithdraw(ctx, from, addr, amt)
API endpoint, implemented in https://github.com/filecoin-project/lotus/blob/master/node/impl/full/wallet.goThe text was updated successfully, but these errors were encountered: