Skip to content

Commit

Permalink
Change address used for invalidateHash helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
area committed Feb 27, 2020
1 parent 0b005c4 commit b0eb14c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helpers/test-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ export async function accommodateChallengeAndInvalidateHashViaTimeout(colonyNetw
const toInvalidateIdx = idx1.mod(2).eq(1) ? idx1.sub(1) : idx1.add(1);

const accounts = await web3GetAccounts();
return repCycle.invalidateHash(round1, toInvalidateIdx, { from: accounts[5] });
return repCycle.invalidateHash(round1, toInvalidateIdx, { from: accounts[0] });
}

export async function accommodateChallengeAndInvalidateHash(colonyNetwork, test, client1, client2, _errors) {
Expand Down Expand Up @@ -528,7 +528,7 @@ export async function accommodateChallengeAndInvalidateHash(colonyNetwork, test,
}

const accounts = await web3GetAccounts();
return repCycle.invalidateHash(round1, toInvalidateIdx, { from: accounts[5] });
return repCycle.invalidateHash(round1, toInvalidateIdx, { from: accounts[0] });
}

async function navigateChallenge(colonyNetwork, client1, client2, errors) {
Expand Down

0 comments on commit b0eb14c

Please sign in to comment.