Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hunjixin committed Feb 18, 2022
1 parent 0198f94 commit a0b2b0e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tools/iptb-plugins/filecoin/docker/dockerfilecoin.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,7 @@ func (l *Dockerfilecoin) Init(ctx context.Context, args ...string) (testbedi.Out
fmt.Sprintf("%s%s:%s", l.VolumePrefix, l.Dir(), "/data/filecoin"),
},
},
&network.NetworkingConfig{},
"")
&network.NetworkingConfig{}, nil, "")
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -281,7 +280,7 @@ func (l *Dockerfilecoin) Start(ctx context.Context, wait bool, args ...string) (
Binds: []string{fmt.Sprintf("%s%s:%s", l.VolumePrefix, l.Dir(), "/data/filecoin")},
},
&network.NetworkingConfig{},
"")
nil, "")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit a0b2b0e

Please sign in to comment.