mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +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::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
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user