1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-27 16:31:06 +00:00

Expand allowable message size for SignVerify to be 1024 which matches FW limits

This commit is contained in:
brianddk 2019-08-12 13:38:28 -05:00
parent 0627d28e07
commit bee8fc3b5c
No known key found for this signature in database
GPG Key ID: 835F0433A6D51860

View File

@ -119,7 +119,7 @@ class SignVerify extends Component<Props> {
onChange={this.handleInputChange} onChange={this.handleInputChange}
rows={4} rows={4}
maxRows={4} maxRows={4}
maxLength={255} maxLength={1024}
/> />
</Row> </Row>
<Row> <Row>
@ -172,7 +172,7 @@ class SignVerify extends Component<Props> {
onChange={this.handleInputChange} onChange={this.handleInputChange}
rows={4} rows={4}
maxRows={4} maxRows={4}
maxLength={255} maxLength={1024}
/> />
</Row> </Row>
<Row> <Row>