Fix typos

This commit is contained in:
Dimitris Apostolou 2023-02-05 00:59:57 +02:00
parent 4f1235d766
commit 1fe1b2fd87
No known key found for this signature in database
GPG key ID: 4B5D20E938204A8A
3 changed files with 7 additions and 7 deletions

View file

@ -57,7 +57,7 @@ class AnyPayPayment {
List<String> get outAddresses {
return instructions
.map((instuction) => instuction.outputs.map((out) => out.address))
.map((instruction) => instruction.outputs.map((out) => out.address))
.expand((e) => e)
.toList();
}