fixup! Merge branch '000-snt-voting-dapp' of https://github.com/status-im/contracts into 000-snt-voting-dapp

This commit is contained in:
Barry Gitarts 2018-06-26 17:15:20 -04:00
parent df786d1536
commit 9e227df03d
1 changed files with 2 additions and 5 deletions

View File

@ -1,5 +1,4 @@
import React, { Fragment } from 'react';
import web3 from 'web3';
import Card from '@material-ui/core/Card';
import CardActions from '@material-ui/core/CardActions';
import CardContent from '@material-ui/core/CardContent';
@ -9,8 +8,6 @@ import Button from '@material-ui/core/Button';
import { withStyles } from '@material-ui/core/styles';
import { withFormik } from 'formik';
const Web3 = new web3;
const oneDayinBlocks = 5760;
const styles = theme => ({
@ -71,13 +68,13 @@ const AddPoll = withFormik({
},
async handleSubmit(values, { setSubmitting }) {
const { description } = values;
const { getBlockNumber } = Web3.eth;
const { eth: { getBlockNumber }, utils: { asciiToHex } } = window.web3;
const { addPoll } = PollManager.methods;
const currentBlock = await getBlockNumber();
const endTime = currentBlock * oneDayinBlocks * 90;
addPoll(
endTime,
description
asciiToHex(description)
)
.send()
.then(res => {