Added a validation to check if a pubkey is prefixed by 05.

pull/69/head
Mikunj 6 years ago
parent cb3599eea8
commit c6d1c8303e

@ -869,6 +869,11 @@
this.set({ id: this.id });
return 'Invalid ID Length';
}
// Check if the id is prefixed by 05
if (!/^05/.test(this.id)) {
return 'Invalid Pubkey Format';
}
}
return null;

Loading…
Cancel
Save