Skip to content

Commit

Permalink
Use unauthenticated request for retrieving the address
Browse files Browse the repository at this point in the history
  • Loading branch information
kerzhner committed Sep 1, 2023
1 parent bebfe9a commit 81908fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func NewRpcClient(trans transport.Requester) (RpcClientApi, error) {
}

// Retrieve the address and set it on the rpcClient
res, err := waitForAuthorizedRequest[serde.NoPayloadRequest, common.Address](c, serde.GetAddressMethod, serde.NoPayloadRequest{})
res, err := WaitForRequestNoAuth[serde.NoPayloadRequest, common.Address](c, serde.GetAddressMethod, serde.NoPayloadRequest{})
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 81908fc

Please sign in to comment.