mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 17:01:09 +00:00
* staking-miner: Adjust `TransactionStatus` update Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * update lockfile for {"substrate"} Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> Co-authored-by: parity-processbot <>
This commit is contained in:
Generated
+198
-178
File diff suppressed because it is too large
Load Diff
@@ -370,7 +370,7 @@ macro_rules! monitor_cmd_for { ($runtime:tt) => { paste::paste! {
|
|||||||
TransactionStatus::Ready |
|
TransactionStatus::Ready |
|
||||||
TransactionStatus::Broadcast(_) |
|
TransactionStatus::Broadcast(_) |
|
||||||
TransactionStatus::Future => continue,
|
TransactionStatus::Future => continue,
|
||||||
TransactionStatus::InBlock(hash) => {
|
TransactionStatus::InBlock((hash, _)) => {
|
||||||
log::info!(target: LOG_TARGET, "included at {:?}", hash);
|
log::info!(target: LOG_TARGET, "included at {:?}", hash);
|
||||||
let key = StorageKey(
|
let key = StorageKey(
|
||||||
frame_support::storage::storage_prefix(b"System", b"Events").to_vec(),
|
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) => {
|
TransactionStatus::Retracted(hash) => {
|
||||||
log::info!(target: LOG_TARGET, "Retracted at {:?}", hash);
|
log::info!(target: LOG_TARGET, "Retracted at {:?}", hash);
|
||||||
},
|
},
|
||||||
TransactionStatus::Finalized(hash) => {
|
TransactionStatus::Finalized((hash, _)) => {
|
||||||
log::info!(target: LOG_TARGET, "Finalized at {:?}", hash);
|
log::info!(target: LOG_TARGET, "Finalized at {:?}", hash);
|
||||||
break
|
break
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user