Skip to content

Commit 699f8e8

Browse files
authored
fix: Prepare tx transaction with right type (#783)
Add tx type to zk tx in create
1 parent e899df9 commit 699f8e8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/forge/bin/cmd/create.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,6 +1115,9 @@ where
11151115
)
11161116
.map_err(|_| ContractDeploymentError::TransactionBuildError)?;
11171117

1118+
// NOTE(zk): We need to prepare the tx for submission to set the tx type to EIP712
1119+
tx.prep_for_submission();
1120+
11181121
Ok(ZkDeployer {
11191122
client: self.client.clone(),
11201123
abi: self.abi,

0 commit comments

Comments
 (0)