Skip to content

Commit

Permalink
Merge pull request #278 from filecoin-project/dev/v2.6.0
Browse files Browse the repository at this point in the history
Dev/v2.6.0
  • Loading branch information
simlecode authored Feb 18, 2023
2 parents 3592e11 + c4631dd commit 4d38212
Show file tree
Hide file tree
Showing 14 changed files with 378 additions and 147 deletions.
4 changes: 4 additions & 0 deletions .githooks/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
set -e

make lint
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*.dylib
badgerStAskDb/
*.puml
market-client
venus-market
/market-client
/venus-market
sequence_chart.md
.idea
.vscode
Expand Down
2 changes: 1 addition & 1 deletion api/clients/signer/gateway_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ type WrapperGatewayClient struct {
}

func (w *WrapperGatewayClient) getAccountsOfSigner(ctx context.Context, addr address.Address) ([]string, error) {
users, err := w.authClient.GetUserBySigner(addr.String())
users, err := w.authClient.GetUserBySigner(ctx, addr)
if err != nil {
return nil, err
}
Expand Down
Loading

0 comments on commit 4d38212

Please sign in to comment.