mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
10 lines
302 B
Nim
10 lines
302 B
Nim
|
import json
|
||
|
import ./core
|
||
|
import response_type
|
||
|
|
||
|
export response_type
|
||
|
|
||
|
proc checkForUpdates*(chainId: int, ensAddress: string, currVersion: string): RpcResponse[JsonNode] {.raises: [Exception].} =
|
||
|
let payload = %* [chainId, ensAddress, currVersion]
|
||
|
result = callPrivateRPC("updates_check", payload)
|