-fix argument order
This commit is contained in:
parent
81732d49cc
commit
93eb88a8c9
@ -172,8 +172,8 @@ batch_withdraw_transaction (void *cls,
|
|||||||
now,
|
now,
|
||||||
wc->reserve_pub,
|
wc->reserve_pub,
|
||||||
&wc->batch_total,
|
&wc->batch_total,
|
||||||
&balance_ok,
|
|
||||||
&found,
|
&found,
|
||||||
|
&balance_ok,
|
||||||
&wc->kyc,
|
&wc->kyc,
|
||||||
&ruuid);
|
&ruuid);
|
||||||
if (0 > qs)
|
if (0 > qs)
|
||||||
|
@ -1515,7 +1515,7 @@ prepare_statements (struct PostgresClosure *pg)
|
|||||||
" ,coin_pub"
|
" ,coin_pub"
|
||||||
" ,amount_with_fee_val AS amount_val"
|
" ,amount_with_fee_val AS amount_val"
|
||||||
" ,amount_with_fee_frac AS amount_frac)"
|
" ,amount_with_fee_frac AS amount_frac)"
|
||||||
" ,ref AS (" /* find applicable refunds */
|
" ,ref AS (" /* find applicable refunds -- NOTE: may do a full join on the master, maybe find a left-join way to integrate with query above to push it to the shards? */
|
||||||
" SELECT"
|
" SELECT"
|
||||||
" amount_with_fee_val AS refund_val"
|
" amount_with_fee_val AS refund_val"
|
||||||
" ,amount_with_fee_frac AS refund_frac"
|
" ,amount_with_fee_frac AS refund_frac"
|
||||||
@ -1536,7 +1536,7 @@ prepare_statements (struct PostgresClosure *pg)
|
|||||||
" ,denom.fee_deposit_frac AS fee_frac"
|
" ,denom.fee_deposit_frac AS fee_frac"
|
||||||
" ,cs.deposit_serial_id" /* ensures we get the fee for each coin, not once per denomination */
|
" ,cs.deposit_serial_id" /* ensures we get the fee for each coin, not once per denomination */
|
||||||
" FROM coins_with_fees cs"
|
" FROM coins_with_fees cs"
|
||||||
" JOIN known_coins kc"
|
" JOIN known_coins kc" /* NOTE: may do a full join on the master, maybe find a left-join way to integrate with query above to push it to the shards? */
|
||||||
" USING (coin_pub)"
|
" USING (coin_pub)"
|
||||||
" JOIN denominations denom"
|
" JOIN denominations denom"
|
||||||
" USING (denominations_serial))"
|
" USING (denominations_serial))"
|
||||||
|
Loading…
Reference in New Issue
Block a user