mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
Added a missing using
This commit is contained in:
@@ -65,7 +65,7 @@ public partial class Gambling : GamblingModule<GamblingService>
|
|||||||
|
|
||||||
public async Task<string> GetBalanceStringAsync(ulong userId)
|
public async Task<string> GetBalanceStringAsync(ulong userId)
|
||||||
{
|
{
|
||||||
var wallet = await _cs.GetWalletAsync(userId);
|
await using var wallet = await _cs.GetWalletAsync(userId);
|
||||||
var bal = await wallet.GetBalance();
|
var bal = await wallet.GetBalance();
|
||||||
return N(bal);
|
return N(bal);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user