Merge pull request #22 from vaci/vaci/rpc-ordering

Track fix to ordering bug in C++ implementation
This commit is contained in:
Vaci 2022-03-05 17:41:30 +00:00 committed by GitHub
commit 97e4766f49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1896,7 +1896,7 @@ final class RpcState<VatId> {
@Override
public Request<AnyPointer.Builder> newCall(long interfaceId, short methodId) {
this.receivedCall = true;
return this.cap.newCall(interfaceId, methodId);
return super.newCall(interfaceId, methodId);
}
@Override