Skip to content

Commit

Permalink
bug修复
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhangYiQiu committed Dec 1, 2024
1 parent 172811e commit 444f4bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TokenPay/BgServices/OrderCheckEVMBaseService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ protected override async Task ExecuteAsync(DateTime RunTime, CancellationToken s
.WithTimeout(15);
var resultInternal = await reqInternal
.GetJsonAsync<BaseResponseList<EthTransaction>>();
if (result.Status == "1" && result.Result?.Count > 0)
if (resultInternal.Status == "1" && resultInternal.Result?.Count > 0)
{
foreach (var item in result.Result)
foreach (var item in resultInternal.Result)
{
//没有需要匹配的订单了
if (!orders.Any())
Expand Down

0 comments on commit 444f4bd

Please sign in to comment.