Skip to content

Commit

Permalink
reset storage, v2 (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
volovyks authored Nov 26, 2024
1 parent 90e1b92 commit 79ec507
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chain-signatures/node/src/storage/app_data_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use near_sdk::AccountId;
use redis::AsyncCommands;

const APP_DATA_PREFIX: &str = "app_data";
const APP_DATA_STORAGE_VERSION: &str = "v1";
const APP_DATA_STORAGE_VERSION: &str = "v2";

pub fn init(pool: &Pool, node_account_id: &AccountId) -> AppDataStorage {
AppDataStorage {
Expand Down
2 changes: 1 addition & 1 deletion chain-signatures/node/src/storage/presignature_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::protocol::presignature::{Presignature, PresignatureId};
type PresigResult<T> = std::result::Result<T, anyhow::Error>;

// Can be used to "clear" redis storage in case of a breaking change
const PRESIGNATURE_STORAGE_VERSION: &str = "v1";
const PRESIGNATURE_STORAGE_VERSION: &str = "v2";

pub fn init(pool: &Pool, node_account_id: &AccountId) -> PresignatureStorage {
PresignatureStorage {
Expand Down
2 changes: 1 addition & 1 deletion chain-signatures/node/src/storage/triple_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use near_account_id::AccountId;
type TripleResult<T> = std::result::Result<T, anyhow::Error>;

// Can be used to "clear" redis storage in case of a breaking change
const TRIPLE_STORAGE_VERSION: &str = "v1";
const TRIPLE_STORAGE_VERSION: &str = "v2";

pub fn init(pool: &Pool, account_id: &AccountId) -> TripleStorage {
TripleStorage {
Expand Down

0 comments on commit 79ec507

Please sign in to comment.