You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When sending an outgoing log, we are populating it with a recipient, however, these are currently just set to be 0.
In the payload.nr we for example have (twice)
// @todo This value needs to be populated!let recipient = AztecAddress::from_field(0);
Instead we should be taking an input here. I think in most cases we can use the same address as the one we are using for incoming viewing as well. It might not necessarily be the case though, so it is not fully clear to me if we want to have it is as an extra argument or just populate it with the same value.
The text was updated successfully, but these errors were encountered:
Resolves#7177.
With this, we are adding recipient to the outgoing log. I'm adding it as
another parameter to the emission, when we pass it in the normal
circumstance (without keys), it is using the same value as the incoming
viewer.
When sending an outgoing log, we are populating it with a
recipient
, however, these are currently just set to be0
.In the
payload.nr
we for example have (twice)Instead we should be taking an input here. I think in most cases we can use the same address as the one we are using for incoming viewing as well. It might not necessarily be the case though, so it is not fully clear to me if we want to have it is as an extra argument or just populate it with the same value.
The text was updated successfully, but these errors were encountered: