Skip to content

Commit c8e5954

Browse files
committed
Fix linter
1 parent b521c2a commit c8e5954

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

packages/hardhat-viem/src/internal/contracts.ts

+5-6
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,11 @@ export async function sendDeploymentTransaction(
120120
contract: GetContractReturnType;
121121
deploymentTransaction: GetTransactionReturnType;
122122
}> {
123-
const {
124-
walletClient: configWalletClient,
125-
publicClient: configPublicClient,
126-
...deployContractParameters
127-
} =
128-
config;
123+
const {
124+
walletClient: configWalletClient,
125+
publicClient: configPublicClient,
126+
...deployContractParameters
127+
} = config;
129128
const [publicClient, walletClient, contractArtifact] = await Promise.all([
130129
configPublicClient ?? getPublicClient(network.provider),
131130
configWalletClient ??

0 commit comments

Comments
 (0)