Skip to content

Commit

Permalink
Change table name
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Apr 14, 2024
1 parent 8d7acce commit c782129
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/core/src/contract/storages/redb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ use redb::{Database, TableDefinition};

use crate::wasm_runtime::StateStorage;

const CONTRACT_PARAMS_TABLE: TableDefinition<&[u8], &[u8]> = TableDefinition::new("contract");
const CONTRACT_PARAMS_TABLE: TableDefinition<&[u8], &[u8]> =
TableDefinition::new("contract_params");
const STATE_TABLE: TableDefinition<&[u8], &[u8]> = TableDefinition::new("state");

pub struct ReDb(Database);
Expand Down

0 comments on commit c782129

Please sign in to comment.