Commit d7f2e98 1 parent fe2f2b3 commit d7f2e98 Copy full SHA for d7f2e98
File tree 3 files changed +3
-3
lines changed
common/src/indexer_service/http
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,5 +66,5 @@ pub struct TapConfig {
66
66
pub chain_id : u64 ,
67
67
pub receipts_verifier_address : Address ,
68
68
pub timestamp_error_tolerance : u64 ,
69
- pub receipt_max_value : u64 ,
69
+ pub receipt_max_value : u128 ,
70
70
}
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ impl IndexerService {
296
296
escrow_accounts,
297
297
domain_separator. clone ( ) ,
298
298
timestamp_error_tolerance,
299
- receipt_max_value. into ( ) ,
299
+ receipt_max_value,
300
300
)
301
301
. await ;
302
302
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ impl From<MainConfig> for Config {
73
73
chain_id : value. blockchain . chain_id as u64 ,
74
74
receipts_verifier_address : value. blockchain . receipts_verifier_address ,
75
75
timestamp_error_tolerance : value. tap . rav_request . timestamp_buffer_secs . as_secs ( ) ,
76
- receipt_max_value : value. service . tap . max_receipt_value_grt . get_value ( ) as u64 ,
76
+ receipt_max_value : value. service . tap . max_receipt_value_grt . get_value ( ) ,
77
77
} ,
78
78
} )
79
79
}
You can’t perform that action at this time.
0 commit comments