Skip to content

Commit

Permalink
Disable controller storage for now (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev authored Oct 2, 2024
1 parent ec05260 commit 77676d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/account_sdk/src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use crate::errors::ControllerError;
use crate::factory::ControllerFactory;
use crate::provider::CartridgeJsonRpcProvider;
use crate::signers::Signer;
use crate::storage::ControllerMetadata;
use crate::typed_data::TypedData;
use crate::{
abigen::{self},
Expand Down Expand Up @@ -101,10 +100,11 @@ where
));
controller.contract = Some(contract);

controller
.backend
.set_controller(address, ControllerMetadata::from(&controller))
.expect("Should store controller");
// TODO: Renenable once we remove js storage busting
// controller
// .backend
// .set_controller(address, ControllerMetadata::from(&controller))
// .expect("Should store controller");

controller
}
Expand Down

0 comments on commit 77676d2

Please sign in to comment.