fix invalid address bug in addProject

This commit is contained in:
Barry Gitarts 2019-04-30 11:53:26 -04:00
parent 561b62d74d
commit 43a2725109
1 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@ import { FundingContext } from '../../context'
const { addProject } = LiquidPledging.methods const { addProject } = LiquidPledging.methods
const zeroAddress = '0x0000000000000000000000000000000000000000'
const hoursToSeconds = hours => hours * 60 * 60 const hoursToSeconds = hours => hours * 60 * 60
const helperText = 'The length of time the Project has to veto when the project delegates to another delegate and they pledge those funds to a project' const helperText = 'The length of time the Project has to veto when the project delegates to another delegate and they pledge those funds to a project'
@ -143,7 +144,7 @@ const SubmissionSection = ({ classes, history }) => {
path: '/root/manifest.json', content: Buffer.from(manifest) path: '/root/manifest.json', content: Buffer.from(manifest)
}) })
const contentHash = await uploadToIpfs(fileLists) const contentHash = await uploadToIpfs(fileLists)
const args = [title, contentHash, account, 0, hoursToSeconds(commitTime), 0] const args = [title, contentHash, account, 0, hoursToSeconds(commitTime), zeroAddress]
addProject(...args) addProject(...args)
.estimateGas({ from: account }) .estimateGas({ from: account })
.then(async gas => { .then(async gas => {