Skip to content

Commit

Permalink
fix for ratio
Browse files Browse the repository at this point in the history
  • Loading branch information
fenix2222 authored Feb 1, 2024
1 parent 1836887 commit 3f23226
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AddressOwnershipTool/Commands/Load/ClaimGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class ClaimGroup

public int NumberOfClaimedAddresses => this.Claims.Count();

public decimal TotalAmountToTransfer => this.OriginalTotalBalance * 0.0001M;
public decimal TotalAmountToTransfer => this.OriginalTotalBalance * 10M;

public decimal OriginalTotalBalance => this.Claims.Sum(c => c.Balance);

Expand Down

0 comments on commit 3f23226

Please sign in to comment.