Skip to content

Commit c3598fa

Browse files
DispatchInfo is now DispatchEventInfo in the client (see paritytech/polkadot-sdk#3685)
1 parent f5d72fe commit c3598fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/blockchain-service/src/types.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::{
88
};
99

1010
use codec::{Decode, Encode};
11-
use frame_support::dispatch::DispatchInfo;
11+
use frame_system::DispatchEventInfo;
1212
use sc_client_api::BlockImportNotification;
1313
use sp_blockchain::{HashAndNumber, TreeRoute};
1414
use sp_core::H256;
@@ -212,7 +212,7 @@ pub enum ExtrinsicResult {
212212
/// This variant represents a successful extrinsic execution.
213213
Success {
214214
/// Dispatch info.
215-
dispatch_info: DispatchInfo,
215+
dispatch_info: DispatchEventInfo,
216216
},
217217
/// Failure variant.
218218
///
@@ -221,7 +221,7 @@ pub enum ExtrinsicResult {
221221
/// Dispatch error.
222222
dispatch_error: DispatchError,
223223
/// Dispatch info.
224-
dispatch_info: DispatchInfo,
224+
dispatch_info: DispatchEventInfo,
225225
},
226226
}
227227

0 commit comments

Comments
 (0)