From 59813fa2be5f4844bb40e583657ad528f2cfff01 Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Sat, 6 Apr 2024 09:12:50 +0200 Subject: [PATCH] remove canonical check --- src/xrp/xrp_parse.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/xrp/xrp_parse.c b/src/xrp/xrp_parse.c index 686ce218..d0cd140a 100644 --- a/src/xrp/xrp_parse.c +++ b/src/xrp/xrp_parse.c @@ -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)