use uint64_t for serial_id
This commit is contained in:
parent
4c9c7482f9
commit
9c515d218b
@ -122,7 +122,7 @@ static void
|
|||||||
res_cb (void *cls,
|
res_cb (void *cls,
|
||||||
unsigned int http_status,
|
unsigned int http_status,
|
||||||
enum TALER_ErrorCode ec,
|
enum TALER_ErrorCode ec,
|
||||||
long long unsigned serial_id,
|
uint64_t serial_id,
|
||||||
struct GNUNET_TIME_Absolute timestamp,
|
struct GNUNET_TIME_Absolute timestamp,
|
||||||
const json_t *json)
|
const json_t *json)
|
||||||
{
|
{
|
||||||
|
@ -537,7 +537,7 @@ static void
|
|||||||
add_incoming_cb (void *cls,
|
add_incoming_cb (void *cls,
|
||||||
unsigned int http_status,
|
unsigned int http_status,
|
||||||
enum TALER_ErrorCode ec,
|
enum TALER_ErrorCode ec,
|
||||||
long long unsigned int row_id,
|
uint64_t row_id,
|
||||||
struct GNUNET_TIME_Absolute timestamp,
|
struct GNUNET_TIME_Absolute timestamp,
|
||||||
const json_t *json)
|
const json_t *json)
|
||||||
{
|
{
|
||||||
|
@ -108,7 +108,7 @@ typedef void
|
|||||||
(*TALER_BANK_AdminAddIncomingResultCallback) (void *cls,
|
(*TALER_BANK_AdminAddIncomingResultCallback) (void *cls,
|
||||||
unsigned int http_status,
|
unsigned int http_status,
|
||||||
enum TALER_ErrorCode ec,
|
enum TALER_ErrorCode ec,
|
||||||
long long unsigned int serial_id,
|
uint64_t serial_id,
|
||||||
struct GNUNET_TIME_Absolute timestamp,
|
struct GNUNET_TIME_Absolute timestamp,
|
||||||
const json_t *json);
|
const json_t *json);
|
||||||
|
|
||||||
|
@ -194,8 +194,8 @@ do_retry (void *cls)
|
|||||||
static void
|
static void
|
||||||
add_incoming_cb (void *cls,
|
add_incoming_cb (void *cls,
|
||||||
unsigned int http_status,
|
unsigned int http_status,
|
||||||
enum TALER_ErrorCode ec,
|
enum TALER_ErrorCode ec,
|
||||||
long long unsigned int serial_id,
|
uint64_t serial_id,
|
||||||
struct GNUNET_TIME_Absolute timestamp,
|
struct GNUNET_TIME_Absolute timestamp,
|
||||||
const json_t *full_response)
|
const json_t *full_response)
|
||||||
{
|
{
|
||||||
@ -456,7 +456,7 @@ fakebank_transfer_traits (void *cls,
|
|||||||
else
|
else
|
||||||
traits[MANDATORY - 1] = TALER_TESTING_make_trait_reserve_priv
|
traits[MANDATORY - 1] = TALER_TESTING_make_trait_reserve_priv
|
||||||
(0, &fts->reserve_priv),
|
(0, &fts->reserve_priv),
|
||||||
|
|
||||||
traits[MANDATORY] = TALER_TESTING_trait_end ();
|
traits[MANDATORY] = TALER_TESTING_trait_end ();
|
||||||
|
|
||||||
return TALER_TESTING_get_trait (traits,
|
return TALER_TESTING_get_trait (traits,
|
||||||
|
@ -626,7 +626,7 @@ static void
|
|||||||
execute_cb (void *cls,
|
execute_cb (void *cls,
|
||||||
unsigned int http_status,
|
unsigned int http_status,
|
||||||
enum TALER_ErrorCode ec,
|
enum TALER_ErrorCode ec,
|
||||||
long long unsigned int serial_id,
|
uint64_t serial_id,
|
||||||
struct GNUNET_TIME_Absolute timestamp,
|
struct GNUNET_TIME_Absolute timestamp,
|
||||||
const json_t *json)
|
const json_t *json)
|
||||||
{
|
{
|
||||||
@ -808,7 +808,7 @@ taler_bank_execute_wire_transfer (void *cls,
|
|||||||
wire_s,
|
wire_s,
|
||||||
&amount,
|
&amount,
|
||||||
(uint64_t) origin_account.no,
|
(uint64_t) origin_account.no,
|
||||||
(uint64_t) destination_account.no,
|
(uint64_t) destination_account.no,
|
||||||
&execute_cb,
|
&execute_cb,
|
||||||
eh);
|
eh);
|
||||||
GNUNET_free_non_null (origin_account.bank_base_url);
|
GNUNET_free_non_null (origin_account.bank_base_url);
|
||||||
|
Loading…
Reference in New Issue
Block a user