Changing text
This commit is contained in:
parent
af30222394
commit
4d9082d33f
|
@ -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":
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue