mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-06 20:12:31 +00:00
Compare commits
12 Commits
xrplf/smar
...
ripple/se/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5c9284865d | ||
|
|
ef3a8e7f77 | ||
|
|
3db218bf9f | ||
|
|
42b839cf57 | ||
|
|
4c39e63b1a | ||
|
|
8bbafdd1c4 | ||
|
|
8970dc8b38 | ||
|
|
09af3eb6fb | ||
|
|
0c6ccb38de | ||
|
|
e214f2556e | ||
|
|
f22e724f03 | ||
|
|
0fb212e1db |
@@ -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_FIX (Security3_1_3, Supported::no, VoteBehavior::DefaultNo)
|
||||
XRPL_FIX (PermissionedDomainInvariant, Supported::yes, VoteBehavior::DefaultNo)
|
||||
XRPL_FIX (ExpiredNFTokenOfferRemoval, Supported::yes, VoteBehavior::DefaultNo)
|
||||
|
||||
@@ -203,7 +203,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;
|
||||
|
||||
Reference in New Issue
Block a user