diff --git a/pallets/slow-clap/Cargo.toml b/pallets/slow-clap/Cargo.toml index 0c0eda9..fe41a18 100644 --- a/pallets/slow-clap/Cargo.toml +++ b/pallets/slow-clap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ghost-slow-clap" -version = "0.4.3" +version = "0.4.4" description = "Applause protocol for the EVM bridge" license.workspace = true authors.workspace = true diff --git a/pallets/slow-clap/src/lib.rs b/pallets/slow-clap/src/lib.rs index d051def..18a91d2 100644 --- a/pallets/slow-clap/src/lib.rs +++ b/pallets/slow-clap/src/lib.rs @@ -897,6 +897,14 @@ impl Pallet { StorageValueRef::persistent(&block_number_key).set(&new_block_range); + log::info!( + target: LOG_TARGET, + "👻 Stored from_block is #{:?} from authority #{:?} for network {:?}", + new_block_range.0, + authority_index, + network_id, + ); + if !sp_io::offchain::is_validator() { log::info!(target: LOG_TARGET, "👻 Not a validator; no transactions available"); return Ok(());