Merge pull request #593 from brianddk/long-msg-sign

Expand allowable message size for SignVerify to be 1024
pull/596/head
Vladimir Volek 5 years ago committed by GitHub
commit c5f77b9f70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save