Fix get current price

This commit is contained in:
2025-09-20 16:20:47 +07:00
parent d58672f879
commit 931c4661dc
9 changed files with 110 additions and 12 deletions

View File

@@ -91,7 +91,8 @@ namespace Managing.Application.Tests
{
var settings = new Web3ProxySettings { BaseUrl = baseUrl };
var options = Options.Create(settings);
return new Web3ProxyService(options);
var logger = new Mock<ILogger<Web3ProxyService>>().Object;
return new Web3ProxyService(options, logger);
}
}
}