From e00e34c79b8d975056d29fab986f60748b25fc34 Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Thu, 20 Apr 2023 14:51:52 +0800 Subject: [PATCH] remove duplicate common.TIPTRC21Fee assignment --- cmd/XDC/config.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cmd/XDC/config.go b/cmd/XDC/config.go index 69f07985fe..4dad8306ae 100644 --- a/cmd/XDC/config.go +++ b/cmd/XDC/config.go @@ -160,15 +160,14 @@ func makeConfigNode(ctx *cli.Context) (*node.Node, XDCConfig) { common.TRC21IssuerSMC = common.TRC21IssuerSMCTestNet cfg.Eth.NetworkId = 51 common.RelayerRegistrationSMC = common.RelayerRegistrationSMCTestnet - common.TIPTRC21Fee = common.TIPXDCXTestnet common.TIPTRC21Fee = common.TIPTRC21FeeTestnet common.TIPXDCXCancellationFee = common.TIPXDCXCancellationFeeTestnet } if ctx.GlobalBool(utils.Enable0xPrefixFlag.Name) { - common.Enable0xPrefix = true; + common.Enable0xPrefix = true } - + // Rewound if rewound := ctx.GlobalInt(utils.RewoundFlag.Name); rewound != 0 { common.Rewound = uint64(rewound)