Skip to content

Commit

Permalink
fix: actually work with go-ipfs 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed May 22, 2020
1 parent 35cc4a1 commit b3f291a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion delaystore/delaystore.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func (*DelaystorePlugin) Version() string {

// Init initializes plugin, satisfying the plugin.Plugin interface. Put any
// initialization logic here.
func (*DelaystorePlugin) Init() error {
func (*DelaystorePlugin) Init(env *plugin.Environment) error {
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion greeter/greeter.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func (*GreeterPlugin) Version() string {

// Init initializes plugin, satisfying the plugin.Plugin interface. Put any
// initialization logic here.
func (*GreeterPlugin) Init() error {
func (*GreeterPlugin) Init(env *plugin.Environment) error {
return nil
}

Expand Down

0 comments on commit b3f291a

Please sign in to comment.