Skip to content
Snippets Groups Projects
Commit bc9da4d5 authored by Alexandru Vasile's avatar Alexandru Vasile Committed by GitHub
Browse files

Companion for #12328 (#6058)


* staking-miner: Adjust `TransactionStatus` update

Signed-off-by: default avatarAlexandru Vasile <alexandru.vasile@parity.io>

* update lockfile for {"substrate"}

Signed-off-by: default avatarAlexandru Vasile <alexandru.vasile@parity.io>
Co-authored-by: parity-processbot <>
parent c3e96ec9
No related merge requests found
This diff is collapsed.
......@@ -370,7 +370,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! {
TransactionStatus::Ready |
TransactionStatus::Broadcast(_) |
TransactionStatus::Future => continue,
TransactionStatus::InBlock(hash) => {
TransactionStatus::InBlock((hash, _)) => {
log::info!(target: LOG_TARGET, "included at {:?}", hash);
let key = StorageKey(
frame_support::storage::storage_prefix(b"System", b"Events").to_vec(),
......@@ -399,7 +399,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! {
TransactionStatus::Retracted(hash) => {
log::info!(target: LOG_TARGET, "Retracted at {:?}", hash);
},
TransactionStatus::Finalized(hash) => {
TransactionStatus::Finalized((hash, _)) => {
log::info!(target: LOG_TARGET, "Finalized at {:?}", hash);
break
},
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment