File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -327,10 +327,8 @@ library LibInitializeGuard {
327
327
function _getContractAbsolutePath (uint256 forkId , address addr ) private view returns (string memory contractName ) {
328
328
TNetwork networkType = vme.getNetworkTypeByForkId (forkId);
329
329
TContract contractType = vme.getContractTypeByRawData (networkType, addr);
330
- string memory contractTypeName = vme.getContractName (contractType);
331
330
string memory contractNameMap = _getContractNameFromAbsolutePath (vme.getContractAbsolutePath (contractType));
332
- contractName =
333
- (keccak256 (bytes (contractNameMap)) == keccak256 (bytes (contractTypeName))) ? contractTypeName : contractNameMap;
331
+ contractName = contractNameMap;
334
332
}
335
333
336
334
function _getContractNameFromAbsolutePath (string memory path ) internal pure returns (string memory contractName ) {
You can’t perform that action at this time.
0 commit comments