git.delta.rocks / unique-network / refs/commits / 000df545959c

difftreelog

test regenerate types

Yaroslav Bolyukin2022-05-06parent: #8aa0346.patch.diff
in: master

1 file changed

modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
129 * The current transaction statuses.129 * The current transaction statuses.
130 **/130 **/
131 currentTransactionStatuses: AugmentedQuery<ApiType, () => Observable<Option<Vec<FpRpcTransactionStatus>>>, []> & QueryableStorageEntry<ApiType, []>;131 currentTransactionStatuses: AugmentedQuery<ApiType, () => Observable<Option<Vec<FpRpcTransactionStatus>>>, []> & QueryableStorageEntry<ApiType, []>;
132 /**
133 * Injected transactions should have unique nonce, here we store current
134 **/
135 injectedNonce: AugmentedQuery<ApiType, () => Observable<U256>, []> & QueryableStorageEntry<ApiType, []>;
132 /**136 /**
133 * Current building block's transactions and receipts.137 * Current building block's transactions and receipts.
134 **/138 **/
431 * The number of events in the `Events<T>` list.435 * The number of events in the `Events<T>` list.
432 **/436 **/
433 eventCount: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;437 eventCount: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
434 /**438 /**
435 * Events deposited for the current block.439 * Events deposited for the current block.
436 * 440 *
437 * NOTE: This storage item is explicitly unbounded since it is never intended to be read441 * NOTE: The item is unbound and should therefore never be read on chain.
438 * from within the runtime.442 * It could otherwise inflate the PoV size of a block.
439 **/443 *
444 * Events have a large in-memory size. Box the events to not go out-of-memory
445 * just in case someone still reads them from within the runtime.
446 **/
440 events: AugmentedQuery<ApiType, () => Observable<Vec<FrameSystemEventRecord>>, []> & QueryableStorageEntry<ApiType, []>;447 events: AugmentedQuery<ApiType, () => Observable<Vec<FrameSystemEventRecord>>, []> & QueryableStorageEntry<ApiType, []>;
441 /**448 /**
442 * Mapping between a topic (represented by T::Hash) and a vector of indexes449 * Mapping between a topic (represented by T::Hash) and a vector of indexes