Merge pull request #44 from Giveth/confirmPayment

remove isProjectCanceled check from confirmPayment
This commit is contained in:
Jordi Baylina 2017-11-15 21:18:21 +01:00 committed by GitHub
commit 84be690f03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 8 deletions

View File

@ -179,9 +179,6 @@ contract LiquidPledging is LiquidPledgingBase {
require(n.paymentState == PaymentState.Paying);
// Check the project is not canceled in the while.
require(!isProjectCanceled(n.owner));
uint64 idNewPledge = findOrCreatePledge(
n.owner,
n.delegationChain,

View File

@ -275,11 +275,6 @@ describe('LiquidPledging test', function () {
it('project2 is canceled', async () => {
await liquidPledging.cancelProject(4, { from: adminProject2 });
});
it('project2 should not be able to confirm payment', async () => {
await assertFail(async () => {
await vault.confirmPayment(1);
});
});
it('Should not be able to withdraw it', async () => {
await assertFail(async () => {
await liquidPledging.withdraw(12, utils.toWei(0.005), { from: giver1 });