mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-28 21:25:32 +00:00
Merge branch '3516-feature-introduce-security-in-x-com-tx-handshake' of github.com:gradido/gradido into 3516-feature-introduce-security-in-x-com-tx-handshake
This commit is contained in:
commit
f43fcc0dd9
@ -34,8 +34,8 @@ export class SendCoinsClient {
|
||||
async voteForSendCoins(args: EncryptedTransferArgs): Promise<string | null> {
|
||||
logger.debug('voteForSendCoins against endpoint=', this.endpoint)
|
||||
try {
|
||||
const { data } = await this.client.rawRequest<any>(voteForSendCoinsQuery, { args })
|
||||
const responseJwt: string = data?.voteForSendCoins
|
||||
const { data } = await this.client.rawRequest<{ voteForSendCoins: string }>(voteForSendCoinsQuery, { args })
|
||||
const responseJwt = data?.voteForSendCoins
|
||||
if (responseJwt) {
|
||||
logger.debug('received response jwt', responseJwt)
|
||||
return responseJwt
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user