Revert "*add a _timeoutCanceled property and abort handeTimeout if true"
This reverts commit 309b9b0ac6
.
This commit is contained in:
parent
f9036e1c73
commit
1d73d23700
|
@ -14,7 +14,6 @@ export default abstract class RpcQueryBase {
|
||||||
protected _promise?: Promise<any>;
|
protected _promise?: Promise<any>;
|
||||||
protected _timeoutTimer?: any;
|
protected _timeoutTimer?: any;
|
||||||
protected _timeout: boolean = false;
|
protected _timeout: boolean = false;
|
||||||
protected _timeoutCanceled: boolean = false;
|
|
||||||
protected _completed: boolean = false;
|
protected _completed: boolean = false;
|
||||||
protected _responses: { [relay: string]: RPCResponse } = {};
|
protected _responses: { [relay: string]: RPCResponse } = {};
|
||||||
protected _errors: { [relay: string]: any } = {};
|
protected _errors: { [relay: string]: any } = {};
|
||||||
|
@ -35,9 +34,6 @@ export default abstract class RpcQueryBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private handeTimeout() {
|
private handeTimeout() {
|
||||||
if (this._timeoutCanceled) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.resolve(undefined, true);
|
this.resolve(undefined, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue