mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
login-server expects amount in GDD Cent form (10,00 GDD => 100000)
This commit is contained in:
parent
afdf112a9c
commit
dbd509cfe9
@ -24,11 +24,11 @@ export class TransactionResolver {
|
||||
const payload = {
|
||||
session_id: sessionId,
|
||||
target_email: email,
|
||||
amount,
|
||||
amount: amount * 10000,
|
||||
memo,
|
||||
auto_sign: true,
|
||||
transaction_type: 'transfer',
|
||||
blockchain_type: 'mysql'
|
||||
blockchain_type: 'mysql',
|
||||
}
|
||||
const result = await apiPost(CONFIG.LOGIN_API_URL + 'createTransaction', payload)
|
||||
if (!result.success) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user