From 793600c84b277bb08c60b9190922d71bd0a0fe47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Zaj=C4=85c?= Date: Thu, 30 May 2024 10:49:10 +0200 Subject: [PATCH] changed docker images to latest --- crates/saya/core/src/prover/stone_image.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/saya/core/src/prover/stone_image.rs b/crates/saya/core/src/prover/stone_image.rs index 9cb6789bc1..22632c8389 100644 --- a/crates/saya/core/src/prover/stone_image.rs +++ b/crates/saya/core/src/prover/stone_image.rs @@ -13,9 +13,9 @@ use crate::prover::loader::prepare_input_cairo0; use crate::LOG_TARGET; #[cfg(feature = "cairo1differ")] -const PROVER_IMAGE: &str = "neotheprogramist/stone-cairo:recursive"; +const PROVER_IMAGE: &str = "neotheprogramist/stone-cairo:latest"; #[cfg(not(feature = "cairo1differ"))] -const PROVER_IMAGE: &str = "neotheprogramist/stone-cairo0:recursive"; +const PROVER_IMAGE: &str = "neotheprogramist/stone-cairo0:latest"; #[derive(Clone)] pub struct StoneProver(pub String);