Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit 8af541e

Browse files
committed
scale dao usdc transfer correctly
1 parent a766735 commit 8af541e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fee_allocator/fee_allocator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def generate_bribe_payload(
315315
"""
316316
transfer txs
317317
"""
318-
usdc.transfer(payment_df["target"], payment_df["amount"])
318+
usdc.transfer(payment_df["target"], int(payment_df["amount"] * 1e6))
319319

320320
spent_usdc = int(total_bribe_usdc + (payment_df["amount"] * 1e6))
321321
vebal_usdc_amount = int(

0 commit comments

Comments
 (0)