Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandros Filios <[email protected]>
  • Loading branch information
alexandrosfilios committed Nov 12, 2024
1 parent d2ebc8f commit 1fe018e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions token/services/network/orion/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ func (d *Driver) New(network, _ string) (driver.Network, error) {
}
}

tokenQueryExecutor, err := d.tokenQueryExecutorProvider.GetExecutor(network, "")
tokenQueryExecutor, err := d.tokenQueryExecutorProvider.GetExecutor(n.Name(), "")
if err != nil {
return nil, errors.Wrapf(err, "failed to get token query executor")
}
spentTokenQueryExecutor, err := d.spentTokenQueryExecutorProvider.GetSpentExecutor(network, "")
spentTokenQueryExecutor, err := d.spentTokenQueryExecutorProvider.GetSpentExecutor(n.Name(), "")
if err != nil {
return nil, errors.Wrapf(err, "failed to get spent token query executor")
}
Expand Down

0 comments on commit 1fe018e

Please sign in to comment.