Compare commits

...

16 Commits

Author SHA1 Message Date
Mayukha Vadari
027abbae8e Merge branch 'ripple/smart-escrow' into ripple/se/supported 2026-04-13 17:01:54 -04:00
Mayukha Vadari
41ce0893c0 Merge branch 'ripple/smart-escrow' of https://github.com/XRPLF/rippled into ripple/se/supported 2026-04-08 13:54:32 -04:00
Mayukha Vadari
620124e58e Merge branch 'ripple/smart-escrow' of https://github.com/XRPLF/rippled into ripple/se/supported 2026-04-08 11:43:49 -04:00
Mayukha Vadari
6c4abae3eb Merge branch 'ripple/smart-escrow' of https://github.com/XRPLF/rippled into ripple/se/supported 2026-04-03 12:40:53 -04:00
Mayukha Vadari
5c9284865d Merge branch 'ripple/smart-escrow' of https://github.com/XRPLF/rippled into ripple/se/supported 2026-04-03 11:09:34 -04:00
Mayukha Vadari
ef3a8e7f77 clang-tidy fixes 2026-03-24 10:23:32 -07:00
Mayukha Vadari
3db218bf9f Merge branch 'ripple/smart-escrow' into ripple/se/supported 2026-03-24 09:11:05 -07:00
Mayukha Vadari
42b839cf57 Merge branch 'ripple/smart-escrow' into ripple/se/supported 2026-02-10 17:49:53 -05:00
Mayukha Vadari
4c39e63b1a Merge remote-tracking branch 'upstream/ripple/smart-escrow' into ripple/se/supported 2026-02-10 17:24:57 -05:00
Mayukha Vadari
8bbafdd1c4 Merge remote-tracking branch 'upstream/ripple/smart-escrow' into ripple/se/supported 2026-02-06 11:04:30 -05:00
Mayukha Vadari
8970dc8b38 Merge branch 'ripple/smart-escrow' into ripple/se/supported 2026-02-05 13:50:44 -05:00
Mayukha Vadari
09af3eb6fb Merge branch 'ripple/smart-escrow' into ripple/se/supported 2026-02-04 18:42:47 -05:00
Mayukha Vadari
0c6ccb38de Merge branch 'ripple/smart-escrow' into ripple/se/supported 2026-02-03 15:41:10 -05:00
Mayukha Vadari
e214f2556e Merge branch 'ripple/smart-escrow' into ripple/se/supported 2026-01-22 17:10:39 -05:00
Mayukha Vadari
f22e724f03 Merge branch 'ripple/smart-escrow' into ripple/se/supported 2026-01-12 14:47:22 -05:00
Mayukha Vadari
0fb212e1db Mark SmartEscrow as Supported::yes 2026-01-08 11:47:26 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@
// Add new amendments to the top of this list.
// Keep it sorted in reverse chronological order.
XRPL_FEATURE(SmartEscrow, Supported::no, VoteBehavior::DefaultNo)
XRPL_FEATURE(SmartEscrow, Supported::yes, VoteBehavior::DefaultNo)
XRPL_FEATURE(MPTokensV2, Supported::no, VoteBehavior::DefaultNo)
XRPL_FIX (Security3_1_3, Supported::no, VoteBehavior::DefaultNo)
XRPL_FIX (PermissionedDomainInvariant, Supported::yes, VoteBehavior::DefaultNo)

View File

@@ -202,7 +202,7 @@ EscrowCreate::preflight(PreflightContext const& ctx)
}
auto const code = ctx.tx.getFieldVL(sfFinishFunction);
if (code.size() == 0 || code.size() > fees.extensionSizeLimit)
if (code.empty() || code.size() > fees.extensionSizeLimit)
{
JLOG(ctx.j.debug()) << "EscrowCreate.FinishFunction bad size " << code.size();
return temMALFORMED;