Upgrade for new kredits contracts and RSK #10

Merged
greg merged 13 commits from chore/upgrade_kredits into master 2022-11-02 17:42:39 +00:00
Showing only changes of commit 77c2cea4a4 - Show all commits

View File

@ -20,10 +20,10 @@ class IpfsPinner {
async pinAll () { async pinAll () {
const contributorHashes = await this._pinAllFromContract(this.kredits.Contributor); const contributorHashes = await this._pinAllFromContract(this.kredits.Contributor);
const contributionHashes = await this._pinAllFromContract(this.kredits.Contribution); const contributionHashes = await this._pinAllFromContract(this.kredits.Contribution);
// const proposalHashes = await this._pinAllFromContract(this.kredits.Proposal); const reimbursementHashes = await this._pinAllFromContract(this.kredits.Reimbursement);
return contributorHashes.concat(contributionHashes); return contributorHashes.concat(contributionHashes)
// .concat(proposalHashes); .concat(reimbursementHashes);
} }
monitor (callback) { monitor (callback) {