Commit 29be2a9 1 parent f2152b8 commit 29be2a9 Copy full SHA for 29be2a9
File tree 3 files changed +4
-6
lines changed
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -119,8 +119,7 @@ RCLConsensus::Adaptor::acquireLedger(LedgerHash const& hash)
119
119
// Notify inbound transactions of the new ledger sequence number
120
120
inboundTransactions_.newRound (built->info ().seq );
121
121
122
- // Use the ledger timing rules of the acquired ledger
123
- parms_.useRoundedCloseTime = built->rules ().enabled (fix1528);
122
+ parms_.useRoundedCloseTime = true ;
124
123
125
124
return RCLCxLedger (built);
126
125
}
@@ -913,8 +912,7 @@ RCLConsensus::Adaptor::preStartRound(RCLCxLedger const & prevLgr)
913
912
// Notify inbound ledgers that we are starting a new round
914
913
inboundTransactions_.newRound (prevLgr.seq ());
915
914
916
- // Use parent ledger's rules to determine whether to use rounded close time
917
- parms_.useRoundedCloseTime = prevLgr.ledger_ ->rules ().enabled (fix1528);
915
+ parms_.useRoundedCloseTime = true ;
918
916
919
917
// propose only if we're in sync with the network (and validating)
920
918
return validating_ && synced;
Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ extern uint256 const fix1201;
381
381
extern uint256 const fix1512;
382
382
extern uint256 const fix1513;
383
383
extern uint256 const fix1523;
384
- extern uint256 const fix1528 ;
384
+ extern uint256 const retiredFix1528 ;
385
385
extern uint256 const featureDepositAuth;
386
386
extern uint256 const featureChecks;
387
387
extern uint256 const fix1571;
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ uint256 const fix1201 = *getRegisteredFeature("fix1201");
172
172
uint256 const fix1512 = *getRegisteredFeature (" fix1512" );
173
173
uint256 const fix1513 = *getRegisteredFeature (" fix1513" );
174
174
uint256 const fix1523 = *getRegisteredFeature (" fix1523" );
175
- uint256 const fix1528 = *getRegisteredFeature (" fix1528" );
175
+ uint256 const retiredFix1528 = *getRegisteredFeature (" fix1528" );
176
176
uint256 const featureDepositAuth = *getRegisteredFeature (" DepositAuth" );
177
177
uint256 const featureChecks = *getRegisteredFeature (" Checks" );
178
178
uint256 const fix1571 = *getRegisteredFeature (" fix1571" );
You can’t perform that action at this time.
0 commit comments