*if cached merge in the cached item signature with the rpc response

This commit is contained in:
Derrick Hammer 2022-12-04 01:25:55 -05:00
parent c8c19b77a6
commit 9393ffc4c1
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ export class RPCServer extends EventEmitter {
if (cachedRequest) {
this.getRequestLock(request)?.release();
return cachedRequest.value;
return { ...cachedRequest.value, signature: cachedRequest.signature };
}
let method = this.getMethodByRequest(request);