Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change database name prefix, bump versions #58

Merged
merged 1 commit into from
Mar 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libzkbob-rs-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libzkbob-rs-wasm"
description = "A higher level zkBob API for Wasm"
version = "1.0.0"
version = "1.1.0"
authors = ["Dmitry Vdovin <[email protected]>"]
repository = "https://github.com/zkBob/libzkbob-rs/"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion libzkbob-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libzkbob-rs"
description = "A higher level zkBob API"
version = "1.0.0"
version = "1.0.1"
authors = ["Dmitry Vdovin <[email protected]>"]
repository = "https://github.com/zkBob/libzkbob-rs/"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions libzkbob-rs/src/client/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ where
P::Fr: 'static,
{
pub async fn init_web(db_id: String, params: P) -> Self {
let merkle_db_name = format!("zeropool.{}.smt", &db_id);
let tx_db_name = format!("zeropool.{}.txs", &db_id);
let merkle_db_name = format!("zkb.{}.smt", &db_id);
let tx_db_name = format!("zkb.{}.txs", &db_id);
let tree = MerkleTree::new_web(&merkle_db_name, params.clone()).await;
let txs = TxStorage::new_web(&tx_db_name).await;

Expand Down