Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
shrimalmadhur committed Dec 12, 2024
1 parent 953e000 commit e7e3855
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion chainio/clients/elcontracts/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,12 @@ func (r *ChainReader) ListAppointees(
target gethcommon.Address,
selector [4]byte,
) ([]gethcommon.Address, error) {
appointees, err := r.permissionController.GetAppointees(&bind.CallOpts{Context: ctx}, accountAddress, target, selector)
appointees, err := r.permissionController.GetAppointees(
&bind.CallOpts{Context: ctx},
accountAddress,
target,
selector,
)
if err != nil {
return nil, errors.New("call to permission controller failed: " + err.Error())
}
Expand Down

0 comments on commit e7e3855

Please sign in to comment.