Skip to content

Commit 00af383

Browse files
authored
Merge branch 'develop' into feat/update_logback
2 parents 128b5d3 + 2b22407 commit 00af383

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

framework/src/main/java/org/tron/core/config/args/Args.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -934,6 +934,10 @@ public static void setParam(final Config config) {
934934
+ "vm.saveInternalTx or vm.saveFeaturedInternalTx is off.");
935935
}
936936

937+
PARAMETER.saveCancelAllUnfreezeV2Details =
938+
config.hasPath(Constant.VM_SAVE_CANCEL_ALL_UNFREEZE_V2_DETAILS)
939+
&& config.getBoolean(Constant.VM_SAVE_CANCEL_ALL_UNFREEZE_V2_DETAILS);
940+
937941
// PARAMETER.allowShieldedTransaction =
938942
// config.hasPath(Constant.COMMITTEE_ALLOW_SHIELDED_TRANSACTION) ? config
939943
// .getInt(Constant.COMMITTEE_ALLOW_SHIELDED_TRANSACTION) : 0;

framework/src/main/java/org/tron/core/net/service/relay/RelayService.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
import org.tron.common.log.layout.DesensitizedConverter;
2222
import org.tron.common.parameter.CommonParameter;
2323
import org.tron.common.utils.ByteArray;
24+
import org.tron.common.utils.ByteUtil;
25+
import org.tron.common.utils.DecodeUtil;
2426
import org.tron.common.utils.Sha256Hash;
2527
import org.tron.core.ChainBaseManager;
2628
import org.tron.core.capsule.TransactionCapsule;

0 commit comments

Comments
 (0)