diff --git a/contracts/rust/src/deploy.rs b/contracts/rust/src/deploy.rs
index 85496b8b..aef3442b 100644
--- a/contracts/rust/src/deploy.rs
+++ b/contracts/rust/src/deploy.rs
@@ -115,7 +115,8 @@ pub async fn deploy_cape_with_deployer(deployer: Arc<EthMiddleware>) -> CAPE<Eth
         .await
         .unwrap()
         .await
-        .unwrap();
+        .unwrap()
+        .ensure_mined();
 
     CAPE::new(cape.address(), deployer)
 }