Skip to content

Commit

Permalink
Merge branch 'hotfix/register-info' into feature/2.7.0-union
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-zhaolei committed Dec 17, 2024
2 parents 09a9ba2 + 2072ac3 commit 9317771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CAServer.Application/Guardian/GuardianAppService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ private async Task<string> BuildTaskByContract(string guardianIdentifierHash, st
var guardianResultDto =
await _guardianProvider.GetHolderInfoFromCacheAsync(guardianIdentifierHash: guardianIdentifierHash,
chainId: chainId, needCache: true);
return guardianResultDto.CreateChainId.IsNullOrEmpty() || guardianResultDto.ChainId != chainId
return guardianResultDto.CreateChainId.IsNullOrEmpty() || guardianResultDto.CreateChainId != chainId
? null
: guardianResultDto.CreateChainId;
}
Expand Down

0 comments on commit 9317771

Please sign in to comment.