Skip to content

Commit

Permalink
Fix windows issues (#654)
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Walworth <robert.walworth@swirldslabs.com>
  • Loading branch information
rwalworth authored Feb 5, 2024
1 parent 69669a3 commit 47988d7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 14 deletions.
12 changes: 0 additions & 12 deletions src/sdk/main/include/Transaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -356,18 +356,6 @@ class Transaction
*/
void buildAllTransactions() const;

/**
* Build all unsigned transactions.
*
* This function clears the internal list of transactions and rebuilds it based on
* the provided node account IDs and transaction body. It is used to prepare the
* transactions for signing and execution.
*
* If no node account IDs are provided, a dummy node account ID is set to prevent
* the transaction from being executed on the client network by default.
*/
void buildAllUnsignedTransactions();

/**
* Update mSourceTransactionBody. This will update all fields of mSourceTransactionBody except the transaction ID and
* the node account ID.
Expand Down
2 changes: 1 addition & 1 deletion src/sdk/tests/unit/ECDSAsecp256k1PrivateKeyUnitTests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ TEST_F(ECDSAsecp256k1PrivateKeyUnitTests, GetChainCode)
}

//-----
TEST_F(ECDSAsecp256k1PrivateKeyUnitTests, ЕCDSACompatibility)
TEST_F(ECDSAsecp256k1PrivateKeyUnitTests, ECDSACompatibility)
{
// Given
auto expectedKeys = getExpectedPrivateKeyPairs();
Expand Down
2 changes: 1 addition & 1 deletion src/sdk/tests/unit/ECDSAsecp256k1PublicKeyUnitTests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ TEST_F(ECDSAsecp256k1PublicKeyUnitTests, ToEvmAddress)
}

//-----
TEST_F(ECDSAsecp256k1PublicKeyUnitTests, ЕCDSACompatibility)
TEST_F(ECDSAsecp256k1PublicKeyUnitTests, ECDSACompatibility)
{
// Given
auto expectedKeys = getExpectedPublicKeyPairs();
Expand Down
1 change: 1 addition & 0 deletions src/sdk/tests/unit/ED25519PrivateKeyUnitTests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include "exceptions/UninitializedException.h"
#include "impl/Utilities.h"

#include <algorithm>
#include <gtest/gtest.h>
#include <memory>
#include <string>
Expand Down

0 comments on commit 47988d7

Please sign in to comment.