accept dir for http args
All checks were successful
cicd / cicd (push) Successful in 12s

This commit is contained in:
bel
2023-10-28 10:24:29 -06:00
parent 4b2af6b85e
commit 476c44f5cd
4 changed files with 45 additions and 6 deletions

View File

@@ -35,8 +35,8 @@ func (t transactionRecipient) empty() bool {
func (files Files) transactions() ([]transaction, error) {
result := make([]transaction, 0)
for i := range files {
some, err := files._transactions(files[i])
for _, path := range files.paths() {
some, err := files._transactions(path)
if err != nil {
return nil, err
}