Skip to content

Commit

Permalink
[Misc]: Fix C++ includes on Linux (#3755)
Browse files Browse the repository at this point in the history
* [Misc]: Fix C++ includes on Linux

* [Misc]: Fix C++ includes on Linux

* [Misc]: Remove `iostream` header

* [KMP]: Bump wallet-core-kotlin version to 4.0.30

* [KMP]: Decrease wallet-core-kotlin version to 4.0.29

* [KMP]: Test using the latest wallet-core-kotlin dependency

* [KMP]: Debug gradlew assemble

* [KMP]: Remove debug
  • Loading branch information
satoshiotomakan committed Mar 22, 2024
1 parent 2c877a3 commit 2de1a62
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion samples/kmp/shared/build.gradle.kts
Expand Up @@ -45,7 +45,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("com.trustwallet:wallet-core-kotlin:4.0.28")
implementation("com.trustwallet:wallet-core-kotlin:+")
}
}
val commonTest by getting {
Expand Down
1 change: 1 addition & 0 deletions src/Everscale/CommonTON/Cell.cpp
Expand Up @@ -5,6 +5,7 @@
#include "Cell.h"

#include <cassert>
#include <cstring>
#include <map>
#include <optional>
#include <unordered_map>
Expand Down
2 changes: 2 additions & 0 deletions src/Tezos/MessageSigner.cpp
Expand Up @@ -2,8 +2,10 @@
//
// Copyright © 2017 Trust Wallet.

#include <chrono>
#include <ctime>
#include <iomanip>
#include <sstream>

#include "Base58.h"
#include "HexCoding.h"
Expand Down

0 comments on commit 2de1a62

Please sign in to comment.