mirror of
https://github.com/corda/corda.git
synced 2025-04-16 07:27:17 +00:00
fix IpPromise::resolved
This method was returning true when it shouldn't have, and this led to an assertion failure when we actually tried to get the promise's value.
This commit is contained in:
parent
78790a0f68
commit
93b3d3d8a6
@ -527,7 +527,8 @@ class IpPromise: public Promise {
|
||||
}
|
||||
|
||||
virtual bool resolved() {
|
||||
return c->machineCode != 0;
|
||||
return c->machineCode != 0
|
||||
and c->logicalCode[logicalIp]->machineOffset->resolved();
|
||||
}
|
||||
|
||||
Context* c;
|
||||
|
Loading…
x
Reference in New Issue
Block a user