Skip to content

Commit 545c157

Browse files
committed
sentry - analytics_recorder - pass Logger to get_payout
1 parent bcd50c5 commit 545c157

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry/src/analytics_recorder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub async fn record(
3535
} => {
3636
let divisor = BigNum::from(10u64.pow(18));
3737

38-
let pay_amount = match get_payout(&channel, event, &session) {
38+
let pay_amount = match get_payout(&logger, &channel, event, &session) {
3939
Ok(Some((_, payout))) => payout.div_floor(&divisor)
4040
.to_f64()
4141
.expect("Should always have a payout in f64 after division"),

0 commit comments

Comments
 (0)