Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ipfs/kubo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e051b8cdaeb4
Choose a base ref
...
head repository: ipfs/kubo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4fad0f72866a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 13, 2015

  1. (ineffassign) add err check to NewNode init

    License: MIT
    Signed-off-by: rht <rhtbot@gmail.com>
    rht committed Oct 13, 2015

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    53bb0b6 View commit details

Commits on Oct 18, 2015

  1. Merge pull request #1827 from rht/metalint

    Add err check to coremock node init
    jbenet committed Oct 18, 2015
    Copy the full SHA
    4fad0f7 View commit details
Showing with 3 additions and 0 deletions.
  1. +3 −0 core/mock/mock.go
3 changes: 3 additions & 0 deletions core/mock/mock.go
Original file line number Diff line number Diff line change
@@ -58,6 +58,9 @@ func MockCmdsCtx() (commands.Context, error) {
node, err := core.NewNode(context.Background(), &core.BuildCfg{
Repo: r,
})
if err != nil {
return commands.Context{}, err
}

return commands.Context{
Online: true,