add a title to the auto-set button to explain

This commit is contained in:
Jonathan Rainville 2018-10-25 12:04:25 -04:00
parent 8886f6b0f2
commit 22f94563fe
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ class ContractFunction extends Component {
<Input name="gasPrice" id="gasPrice" placeholder="uint256"
value={this.state.inputs.gasPrice || ''}
onChange={(e) => this.handleChange(e, 'gasPrice')}/>
<Button onClick={(e) => this.autoSetGasPrice(e)}>
<Button onClick={(e) => this.autoSetGasPrice(e)} title="Automatically set the gas price to what is currently in the estimator (default: safe low)">
Auto-set
</Button>
</FormGroup>