diff --git a/pallets/slow-clap/Cargo.toml b/pallets/slow-clap/Cargo.toml index 7dfa57c..cd8c3dd 100644 --- a/pallets/slow-clap/Cargo.toml +++ b/pallets/slow-clap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ghost-slow-clap" -version = "0.3.56" +version = "0.3.57" description = "Applause protocol for the EVM bridge" license.workspace = true authors.workspace = true diff --git a/pallets/slow-clap/src/evm_types.rs b/pallets/slow-clap/src/evm_types.rs index 8a04d0f..330be9e 100644 --- a/pallets/slow-clap/src/evm_types.rs +++ b/pallets/slow-clap/src/evm_types.rs @@ -127,7 +127,7 @@ impl EvmResponseType { log::info!( target: LOG_TARGET, - "🧐 Found {:?} claps for network {:?}", + "👻 Found {:?} claps for network {:?}", claps_len, network_id, ); @@ -138,7 +138,7 @@ impl EvmResponseType { None => { log::info!( target: LOG_TARGET, - "🧐 Clap #{} signing failed from authority #{:?} for network {:?}", + "👻 Clap #{} signing failed from authority #{:?} for network {:?}", clap_index, authority_index, network_id, @@ -157,7 +157,7 @@ impl EvmResponseType { { log::info!( target: LOG_TARGET, - "🧐 Failed to submit clap #{} from authority #{:?} for network {:?}: {:?}", + "👻 Failed to submit clap #{} from authority #{:?} for network {:?}: {:?}", clap_index, authority_index, network_id, @@ -198,7 +198,7 @@ impl EvmResponseType { log::info!( target: LOG_TARGET, - "🧐 New block commitment from authority #{:?} for network {:?}", + "👻 New block commitment from authority #{:?} for network {:?}", authority_index, network_id, ); @@ -208,7 +208,7 @@ impl EvmResponseType { None => { log::info!( target: LOG_TARGET, - "🧐 Block commitment signing failed from authority #{:?} for network {:?}", + "👻 Block commitment signing failed from authority #{:?} for network {:?}", authority_index, network_id, ); @@ -224,7 +224,7 @@ impl EvmResponseType { if let Err(e) = SubmitTransaction::>::submit_unsigned_transaction(call.into()) { log::info!( target: LOG_TARGET, - "🧐 Failed to submit block commitment from authority #{:?} for network {:?}: {:?}", + "👻 Failed to submit block commitment from authority #{:?} for network {:?}: {:?}", authority_index, network_id, e, diff --git a/pallets/slow-clap/src/lib.rs b/pallets/slow-clap/src/lib.rs index ddcb063..d88a2e6 100644 --- a/pallets/slow-clap/src/lib.rs +++ b/pallets/slow-clap/src/lib.rs @@ -450,7 +450,7 @@ pub mod pallet { if let Err(e) = Self::start_slow_clapping(now) { log::info!( target: LOG_TARGET, - "👏 Skipping slow clap at {:?}: {:?}", + "👻 Skipping slow clap at {:?}: {:?}", now, e, ) @@ -648,7 +648,7 @@ impl Pallet { let _ = Self::try_applause(&clap, &received_claps_key).inspect_err(|error_msg| { log::info!( target: LOG_TARGET, - "👏 Could not applause because of: {:?}", + "👻 Could not applause because of: {:?}", error_msg, ) }); @@ -770,7 +770,7 @@ impl Pallet { log::info!( target: LOG_TARGET, - "🧐 Offchain worker started for network #{:?} at block #{:?}", + "👻 Offchain worker started for network #{:?} at block #{:?}", network_in_use.0, block_number, ); @@ -855,7 +855,7 @@ impl Pallet { StorageValueRef::persistent(&block_number_key).set(&new_block_range); if !sp_io::offchain::is_validator() { - log::info!(target: LOG_TARGET, "🧐 Not a validator; no transactions available"); + log::info!(target: LOG_TARGET, "👻 Not a validator; no transactions available"); return Ok(()); }