From ca30aa7e4d52ba1e0a5224f894326d6fe435e690 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Tue, 9 Sep 2025 17:25:46 +0200 Subject: [PATCH] fix: add missing .base. pragma --- ethers/signer.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers/signer.nim b/ethers/signer.nim index e38509e..a657566 100644 --- a/ethers/signer.nim +++ b/ethers/signer.nim @@ -58,7 +58,7 @@ method getGasPrice*( method getMaxPriorityFeePerGas*( signer: Signer -): Future[UInt256] {.async: (raises: [SignerError, CancelledError]).} = +): Future[UInt256] {.base, async: (raises: [SignerError, CancelledError]).} = return await signer.provider.getMaxPriorityFeePerGas() method getTransactionCount*(