difftreelog
style pr doc nitpicks
in: master
2 files changed
runtime/common/config/substrate.rsdiffbeforeafterboth161 /// The ubiquitous event type.161 /// The ubiquitous event type.162 type RuntimeEvent = RuntimeEvent;162 type RuntimeEvent = RuntimeEvent;163 // FIXME: Is () the new treasury?163 // FIXME: Is () the new treasury?164 // Switch to real treasury once we start having dust removals165 // Related issue: https://github.com/paritytech/polkadot/issues/7323164 type DustRemoval = ();166 type DustRemoval = ();165 type ExistentialDeposit = ExistentialDeposit;167 type ExistentialDeposit = ExistentialDeposit;166 type AccountStore = System;168 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,