Skip to content

Commit

Permalink
Merge pull request #207 from mrlunin/buildGetAcceptanceMechanismsRequ…
Browse files Browse the repository at this point in the history
…est-make-submitterDid-optional

Mismatch arguments requirements for GetAcceptanceMechanismsRequestOptions in indy-vdr-shared and indy-vdr-react-native/cpp
  • Loading branch information
andrewwhitehead authored Aug 10, 2023
2 parents 07d3188 + 5a29221 commit 1142b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrappers/javascript/indy-vdr-react-native/cpp/indyVdr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jsi::Value buildAcceptanceMechanismsRequest(jsi::Runtime &rt,

jsi::Value buildGetAcceptanceMechanismsRequest(jsi::Runtime &rt,
jsi::Object options) {
auto submitterDid = jsiToValue<std::string>(rt, options, "submitterDid");
auto submitterDid = jsiToValue<std::string>(rt, options, "submitterDid", true);
auto timestamp = jsiToValue<int64_t>(rt, options, "timestamp", true);
auto version = jsiToValue<std::string>(rt, options, "version", true);

Expand Down

0 comments on commit 1142b89

Please sign in to comment.