Skip to content

Commit 3b09595

Browse files
committed
v0.0.10
1 parent 098858a commit 3b09595

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ let package = Package(
1818
.binaryTarget(
1919
name: "CCXTCore",
2020
// path: "Sources/CCXTCore/CCXTCore.xcframework", // for local development
21-
url: "https://github.com/ccxt-native/ccxt-pro-swift/releases/download/v0.0.9/CCXTCore.xcframework.zip",
22-
checksum: "dce93d11a70b783ff10b7c73c1c2e1af01fc868c2b70090669758606e5cdef2f"
21+
url: "https://github.com/ccxt-native/ccxt-pro-swift/releases/download/v0.0.10/CCXTCore.xcframework.zip",
22+
checksum: "f04609a71a76168151838f8837ab9c6b07056bbdf37a3185b2f673475b9c6a2d"
2323
),
2424
.target(
2525
name: "CCXT",

Sources/CCXT/CCXTExchange.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5445,7 +5445,7 @@ public class Exchange {
54455445
}
54465446

54475447

5448-
public func unWatchOHLCV (symbol: String, timeframe: Any = "1m", params: [String: Any] = [:]) async throws -> Any {
5448+
public func unWatchOHLCV (symbol: String, timeframe: String = "1m", params: [String: Any] = [:]) async throws -> Any {
54495449
try await withCheckedThrowingContinuation { (continuation: CheckedContinuation<Any, Error>) in
54505450
DispatchQueue.global(qos: .userInitiated).async {
54515451
do {

ccxtwrapper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8580,7 +8580,7 @@ func (e *CCXTGoExchange) SetFees(newValue []byte) error {
85808580

85818581
}
85828582

8583-
func (e *CCXTGoExchange) UnWatchOHLCV(symbol string, timeframe interface{}, params []byte) ([]byte, error) {
8583+
func (e *CCXTGoExchange) UnWatchOHLCV(symbol string, timeframe string, params []byte) ([]byte, error) {
85848584

85858585
var decoded map[string]interface{}
85868586
if err := json.Unmarshal(params, &decoded); err != nil {

0 commit comments

Comments
 (0)