Skip to content

Commit

Permalink
remove canonical check
Browse files Browse the repository at this point in the history
  • Loading branch information
dangell7 committed Apr 6, 2024
1 parent aafaa62 commit 59813fa
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/xrp/xrp_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,15 +421,6 @@ err_t post_process_field(parseContext_t *context, field_t *field) {
}
break;
case STI_UINT32:
// Reject transaction if tfFullyCanonicalSig is not set
if (field->id == XRP_UINT32_FLAGS) {
uint32_t value = field->data.u32;
if ((value & TF_FULLY_CANONICAL_SIG) == 0) {
err.err = 0x6800;
return err;
}
}

break;
case STI_VL:
// Detect when SigningPubKey is empty (needed for multi-sign)
Expand Down

0 comments on commit 59813fa

Please sign in to comment.