mirror of
https://github.com/status-im/status-lib.git
synced 2025-01-12 13:35:00 +00:00
add address to exported key
(cherry picked from commit f33649c885788aedb5270073c4325a21fba7ecbb)
This commit is contained in:
parent
11a46353c1
commit
08c16f00d8
@ -81,7 +81,8 @@ method keycardExportKey*(self: StatusGoBackend, derive: bool, makeCurrent: bool,
|
|||||||
|
|
||||||
result = KeycardExportedKey(
|
result = KeycardExportedKey(
|
||||||
privKey: parsedResponse["privateKey"].getStr(),
|
privKey: parsedResponse["privateKey"].getStr(),
|
||||||
pubKey: parsedResponse["publicKey"].getStr()
|
pubKey: parsedResponse["publicKey"].getStr(),
|
||||||
|
address: parsedResponse["address"].getStr()
|
||||||
)
|
)
|
||||||
|
|
||||||
method keycardGetStatusApplication*(self: StatusGoBackend): KeycardStatus =
|
method keycardGetStatusApplication*(self: StatusGoBackend): KeycardStatus =
|
||||||
|
@ -45,4 +45,5 @@ type KeycardStatus* = ref object
|
|||||||
type KeycardExportedKey* = ref object
|
type KeycardExportedKey* = ref object
|
||||||
privKey*: string
|
privKey*: string
|
||||||
pubKey*: string
|
pubKey*: string
|
||||||
|
address*: string
|
||||||
|
|
||||||
|
2
vendor/nim-keycard-go
vendored
2
vendor/nim-keycard-go
vendored
@ -1 +1 @@
|
|||||||
Subproject commit 469aa272688102293c408ea40f422e52a22a8c8c
|
Subproject commit 7a448595f758c7a1ae36ca935957b316fcf6c8b6
|
Loading…
x
Reference in New Issue
Block a user