Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Commit

Permalink
fix(entangled): Update cclient api headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Yu Wei Wu committed Mar 12, 2019
1 parent 1c71253 commit af3df06
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ git_repository(

git_repository(
name = "entangled",
commit = "6490d90782b70cbca8d2602095e65032fbb69832",
commit = "8d847ffcecd50f8f3760bfee07d7ed33ecc067bf",
remote = "https://github.com/iotaledger/entangled.git",
)

Expand Down
3 changes: 1 addition & 2 deletions accelerator/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ cc_library(
":common_core",
":ta_errors",
"//serializer",
"@entangled//cclient:api",
],
)

Expand All @@ -37,7 +36,7 @@ cc_library(
"//utils:cache",
"//utils:pow",
"@com_github_uthash//:uthash",
"@entangled//cclient:api",
"@entangled//cclient/api",
"@entangled//cclient/types",
"@entangled//common/model:bundle",
"@entangled//utils:time",
Expand Down
4 changes: 2 additions & 2 deletions accelerator/common_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include "accelerator/config.h"
#include "accelerator/errors.h"
#include "cclient/iota_client_core_api.h"
#include "cclient/iota_client_extended_api.h"
#include "cclient/api/core/core_api.h"
#include "cclient/api/extended/extended_api.h"
#include "cclient/types/types.h"
#include "common/model/bundle.h"
#include "common/model/transfer.h"
Expand Down
2 changes: 1 addition & 1 deletion tests/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cc_library(
":test_define",
"//accelerator:common_core",
"@com_google_googletest//:gtest_main",
"@entangled//cclient:api",
"@entangled//cclient/api",
],
)

Expand Down
1 change: 0 additions & 1 deletion tests/iota_api_mock.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include "iota_api_mock.hh"
#include "cclient/iota_client_core_api.h"
extern APIMock APIMockObj;

retcode_t iota_client_get_transactions_to_approve(
Expand Down
4 changes: 2 additions & 2 deletions tests/iota_api_mock.hh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "accelerator/common_core.h"
#include "cclient/iota_client_core_api.h"
#include "cclient/iota_client_extended_api.h"
#include "cclient/api/core/core_api.h"
#include "cclient/api/extended/extended_api.h"
#include "gmock/gmock.h"
#include "tests/test_define.h"

Expand Down

0 comments on commit af3df06

Please sign in to comment.