Skip to content

Commit 85207d6

Browse files
kelemenoclaude
andcommitted
fix: Update DeployPaymaster ABI import to match linter changes
The linter renamed DeployPaymasterAbi to IDeployPaymasterAbi in abi.rs, but deploy_paymaster.rs was still using the old constant name. Updated to use IDEPLOYPAYMASTERABI_ABI instead of DEPLOYPAYMASTERABI_ABI. Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 692b3a2 commit 85207d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zkstack_cli/crates/zkstack/src/commands/chain/deploy_paymaster.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use zkstack_cli_config::{
1010
};
1111

1212
use crate::{
13-
abi::DEPLOYPAYMASTERABI_ABI,
13+
abi::IDEPLOYPAYMASTERABI_ABI,
1414
utils::forge::{check_the_balance, fill_forge_private_key, WalletOwner},
1515
};
1616

@@ -48,7 +48,7 @@ pub async fn deploy_paymaster(
4848
let chain_id = chain_config.chain_id.as_u64();
4949

5050
// Encode calldata for the run function
51-
let deploy_paymaster_contract = BaseContract::from(DEPLOYPAYMASTERABI_ABI.clone());
51+
let deploy_paymaster_contract = BaseContract::from(IDEPLOYPAYMASTERABI_ABI.clone());
5252
let calldata = deploy_paymaster_contract
5353
.encode("run", (bridgehub, chain_id))
5454
.unwrap();

0 commit comments

Comments
 (0)