fix typo and spacing

This commit is contained in:
João Bordalo
2024-09-04 17:24:26 +01:00
parent b5e1ea4d57
commit 8d339cd3e7
4 changed files with 5 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ func CoinSelect(
}
if selectedAmount < amount {
return nil, 0, fmt.Errorf("not enough funds to cover amount%d", amount)
return nil, 0, fmt.Errorf("not enough funds to cover amount %d", amount)
}
change := selectedAmount - amount