difftreelog
style pr doc nitpicks
in: master
2 files changed
runtime/common/config/substrate.rsdiffbeforeafterboth--- a/runtime/common/config/substrate.rs
+++ b/runtime/common/config/substrate.rs
@@ -161,6 +161,8 @@
/// The ubiquitous event type.
type RuntimeEvent = RuntimeEvent;
// FIXME: Is () the new treasury?
+ // Switch to real treasury once we start having dust removals
+ // Related issue: https://github.com/paritytech/polkadot/issues/7323
type DustRemoval = ();
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
tests/src/util/playgrounds/unique.tsdiffbeforeafterboth682 options: Partial<SignerOptions> | null = null,/*, failureMessage='expected success'*/682 options: Partial<SignerOptions> | null = null,/*, failureMessage='expected success'*/683 ): Promise<ITransactionResult> {683 ): Promise<ITransactionResult> {684 if(this.api === null) throw Error('API not initialized');684 if(this.api === null) throw Error('API not initialized');685 if(!extrinsic.startsWith('api.tx.')) throw Error(`${extrinsic} is not transaction`);686685687 const startTime = (new Date()).getTime();686 const startTime = (new Date()).getTime();688 let result: ITransactionResult;687 let result: ITransactionResult;734 }733 }735734736 async callRpc735 async callRpc736 // TODO: make it strongly typed, or use api.query/api.rpc directly737 // <737 // <738 // K extends 'rpc' | 'query',738 // K extends 'rpc' | 'query',739 // E extends string,739 // E extends string,