Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rstormsf committed Jun 25, 2018
1 parent 2300d17 commit 4011806
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/4.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class FourthStep extends React.Component {
render () {
let totalNumberOftx;

if(Number(this.tokenStore.totalBalance) >= Number(this.tokenStore.allowance)){
if(Number(this.tokenStore.totalBalance) > Number(this.tokenStore.allowance)){
totalNumberOftx = Number(this.totalNumberTx) + 1;
} else {
totalNumberOftx = Number(this.totalNumberTx)
Expand Down
5 changes: 2 additions & 3 deletions src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ export class Header extends React.Component {
<form className="form form_header">
{/* <Link className="button" to='/retry'>Retry Failed Transaction</Link> */}
<label htmlFor="network"
className="label">MultiSender Address:
<a target="_blank" href={`${explorerUrl}/address/${process.env.REACT_APP_PROXY_MULTISENDER}`}>
{process.env.REACT_APP_PROXY_MULTISENDER}</a>
className="label">MultiSender Address: <a target="_blank" href={`${explorerUrl}/address/${process.env.REACT_APP_PROXY_MULTISENDER}`}>
{process.env.REACT_APP_PROXY_MULTISENDER}</a>
</label>
{/* <select id="network" className="select">
<option value="">YourTokens</option>
Expand Down

0 comments on commit 4011806

Please sign in to comment.