Skip to content

Commit

Permalink
Merge pull request #26 from schnetzlerjoe/main
Browse files Browse the repository at this point in the history
Proof validation bugs and upgrade deps
  • Loading branch information
schnetzlerjoe committed Aug 8, 2022
2 parents f158e40 + f3479be commit 359ed32
Show file tree
Hide file tree
Showing 33 changed files with 508 additions and 1,097 deletions.
9 changes: 4 additions & 5 deletions app/app.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package app

import (
"fmt"
"io"
"net/http"
"os"
Expand Down Expand Up @@ -191,10 +190,10 @@ var (
func init() {
userHomeDir, err := os.UserHomeDir()
if err != nil {
panic(fmt.Sprintf("failed to get user home directory: %s", err))
panic(err)
}

DefaultNodeHome = filepath.Join(userHomeDir, fmt.Sprintf(".%s", Name))
DefaultNodeHome = filepath.Join(userHomeDir, "."+Name)
}

// App extends an ABCI application, but with most of its parameters exported.
Expand Down Expand Up @@ -258,10 +257,10 @@ func New(
skipUpgradeHeights map[int64]bool,
homePath string,
invCheckPeriod uint,
encodingConfig EncodingConfig,
encodingConfig cosmoscmd.EncodingConfig,
appOpts servertypes.AppOptions,
baseAppOptions ...func(*baseapp.BaseApp),
) *App {
) cosmoscmd.App {
appCodec := encodingConfig.Marshaler
cdc := encodingConfig.Amino
interfaceRegistry := encodingConfig.InterfaceRegistry
Expand Down
44 changes: 0 additions & 44 deletions app/config.go

This file was deleted.

21 changes: 0 additions & 21 deletions app/prefix.go

This file was deleted.

113 changes: 0 additions & 113 deletions app/test_helpers.go

This file was deleted.

Loading

0 comments on commit 359ed32

Please sign in to comment.