Skip to content

Commit

Permalink
modify: register info.
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-zhaolei committed Dec 17, 2024
1 parent 6b007b5 commit 2072ac3
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 2072ac3

Please sign in to comment.