Skip to content

Commit

Permalink
fix: event parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
gas1cent committed Nov 6, 2023
1 parent ec564e9 commit afe3f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solidity/contracts/modules/finality/CallbackModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ contract CallbackModule is Module, ICallbackModule {
RequestParameters memory _params = decodeRequestData(_request.finalityModuleData);
_params.target.call(_params.data);
emit Callback(_response.requestId, _params.target, _params.data);
emit RequestFinalized(_response.requestId, _finalizer);
emit RequestFinalized(_response.requestId, _response, _finalizer);
}
}

0 comments on commit afe3f70

Please sign in to comment.