Skip to content

Commit 40b7f62

Browse files
committed
fix: Rename necessary fields for assets_state and fix typo
Signed-off-by: William Hankins <[email protected]>
1 parent 3a03a53 commit 40b7f62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/assets_state/src/assets_state.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Acropolis Asset State module for Caryatid
2-
//! Accepts native asset mint and burn events a
2+
//! Accepts native asset mint and burn events
33
//! and derives the Asset State in memory
44
55
use acropolis_common::{
@@ -106,11 +106,11 @@ impl AssetsState {
106106
info!("Creating subscriber on '{asset_deltas_subscribe_topic}'");
107107

108108
let assets_query_topic = get_string_flag(&config, DEFAULT_ASSETS_QUERY_TOPIC);
109-
info!("Creating DRep query handler on '{assets_query_topic}'");
109+
info!("Creating asset query handler on '{assets_query_topic}'");
110110

111111
// Initalize state history
112112
let history = Arc::new(Mutex::new(StateHistory::<State>::new(
113-
"DRepState",
113+
"AssetsState",
114114
StateHistoryStore::default_block_store(),
115115
)));
116116
let history_run = history.clone();

0 commit comments

Comments
 (0)