parent
f9eed4cdb1
commit
5a3c10a29c
@ -36,7 +36,9 @@ export class NonceManager extends AbstractSigner {
|
|||||||
if (this.#noncePromise == null) {
|
if (this.#noncePromise == null) {
|
||||||
this.#noncePromise = super.getNonce("pending");
|
this.#noncePromise = super.getNonce("pending");
|
||||||
}
|
}
|
||||||
return (await this.#noncePromise) + this.#delta;
|
|
||||||
|
const delta = this.#delta;
|
||||||
|
return (await this.#noncePromise) + delta;
|
||||||
}
|
}
|
||||||
|
|
||||||
return super.getNonce(blockTag);
|
return super.getNonce(blockTag);
|
||||||
|
Loading…
Reference in New Issue
Block a user