test_: Addressed feedback from Sale

This commit is contained in:
Samuel Hawksby-Robinson 2024-05-24 13:12:28 +01:00
parent 2d242e912f
commit 0d8068f5f4
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ func setupRouteValidationMapsV2(fromLockedAmount map[uint64]*hexutil.Big) (map[u
fromExcluded := make(map[uint64]bool)
for chainID, amount := range fromLockedAmount {
if amount.ToInt().Cmp(zero) == 0 {
if amount.ToInt().Cmp(zero) <= 0 {
fromExcluded[chainID] = false
} else {
fromIncluded[chainID] = false