mirror of
https://github.com/trezor/trezor-wallet
synced 2025-02-15 09:32:00 +00:00
Merge pull request #593 from brianddk/long-msg-sign
Expand allowable message size for SignVerify to be 1024
This commit is contained in:
commit
c5f77b9f70
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user