Skip to content

Commit

Permalink
leasve signing method tempty
Browse files Browse the repository at this point in the history
Signed-off-by: Kai-Uwe Hermann <kai-uwe.hermann@pionix.de>
  • Loading branch information
hikinggrass committed Dec 4, 2023
1 parent 9898767 commit 660a518
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/LemDCBM400600/main/lem_dcbm_400600_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ LemDCBM400600Controller::stop_transaction(const std::string& transaction_id) {
[this, transaction_id]() {
this->request_device_to_stop_transaction(transaction_id);
auto signed_meter_value =
types::powermeter::SignedMeterValue{fetch_ocmf_result(transaction_id), "OCMF", "OCMF"};
types::powermeter::SignedMeterValue{fetch_ocmf_result(transaction_id), "", "OCMF"};
return types::powermeter::TransactionStopResponse{types::powermeter::TransactionRequestStatus::OK,
signed_meter_value};
},
Expand Down
2 changes: 1 addition & 1 deletion modules/PowermeterBSM/main/powermeterImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ types::powermeter::TransactionStopResponse powermeterImpl::handle_stop_transacti
transport::DataVector data = transport->fetch(known_model::BSM_OCMF_CurrentSnapshot);

bsm::SignedOCMFSnapshot signed_snapshot(data);
auto signed_meter_value = types::powermeter::SignedMeterValue{signed_snapshot.O(), "OCMF", "OCMF"};
auto signed_meter_value = types::powermeter::SignedMeterValue{signed_snapshot.O(), "", "OCMF"};

return {types::powermeter::TransactionRequestStatus::OK, signed_meter_value};

Expand Down

0 comments on commit 660a518

Please sign in to comment.