Skip to content
New issue

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

How i can write test for this --> revert NftMarketplace__TransferFailed(); #6217

Open
Nikhil8400 opened this issue Oct 13, 2023 · 0 comments

Comments

@Nikhil8400
Copy link

function withdrawProceeds() external {
uint256 proceeds = s_proceeds[msg.sender];
if(proceeds<=0){
revert NftMarketplace__NoProceeds();
}
s_proceeds[msg.sender] = 0;
(bool success,) = payable(msg.sender).call{value: proceeds}("");
if(!success){
revert NftMarketplace__TransferFailed();
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant