Changing text

This commit is contained in:
Richard Ramos 2018-10-15 13:14:39 -04:00
parent af30222394
commit 4d9082d33f
2 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@ class App extends React.Component {
messageBody = <Fragment><p>You will shortly receive some ETH and SNT, just for attending #CryptoLife! Use it to register an ENS Name and buy food.</p><p>We hope you have a wonderful time bringing crypto closer to life with us.</p></Fragment>
break;
case "red":
messageTitle = "Shit bro, there was an error";
messageTitle = "Shit, there was an error";
messageBody = <p>Please ask a volunteer for help in person.</p>;
break;
case "yellow":

View File

@ -110,8 +110,8 @@ const process = async (request) => {
const estimatedGas = await toSend.estimateGas({from: account.address});
const tx = {
gasPrice: web3.utils.toHex(parseInt(gasPrice)),
gasLimit: web3.utils.toHex(estimatedGas + 1000),
gasPrice: parseInt(gasPrice),
gas: estimatedGas + 1000,
from: account.address,
to: config.contractAddress,
value: "0x00",