Merge PR #6882: server: cleanup
This commit is contained in:
parent
cbb68fc6ef
commit
d91811fd8c
|
@ -1,29 +0,0 @@
|
||||||
package server
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
"os"
|
|
||||||
"path/filepath"
|
|
||||||
|
|
||||||
dbm "github.com/tendermint/tm-db"
|
|
||||||
|
|
||||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
||||||
)
|
|
||||||
|
|
||||||
func openDB(rootDir string) (dbm.DB, error) {
|
|
||||||
dataDir := filepath.Join(rootDir, "data")
|
|
||||||
db, err := sdk.NewLevelDB("application", dataDir)
|
|
||||||
return db, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func openTraceWriter(traceWriterFile string) (w io.Writer, err error) {
|
|
||||||
if traceWriterFile != "" {
|
|
||||||
w, err = os.OpenFile(
|
|
||||||
traceWriterFile,
|
|
||||||
os.O_WRONLY|os.O_APPEND|os.O_CREATE,
|
|
||||||
0666,
|
|
||||||
)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
|
@ -11,19 +12,19 @@ import (
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/cosmos/cosmos-sdk/simapp"
|
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
tmcfg "github.com/tendermint/tendermint/config"
|
tmcfg "github.com/tendermint/tendermint/config"
|
||||||
tmcli "github.com/tendermint/tendermint/libs/cli"
|
tmcli "github.com/tendermint/tendermint/libs/cli"
|
||||||
tmflags "github.com/tendermint/tendermint/libs/cli/flags"
|
tmflags "github.com/tendermint/tendermint/libs/cli/flags"
|
||||||
"github.com/tendermint/tendermint/libs/log"
|
"github.com/tendermint/tendermint/libs/log"
|
||||||
|
dbm "github.com/tendermint/tm-db"
|
||||||
|
|
||||||
"github.com/cosmos/cosmos-sdk/client/flags"
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
||||||
"github.com/cosmos/cosmos-sdk/codec"
|
"github.com/cosmos/cosmos-sdk/codec"
|
||||||
"github.com/cosmos/cosmos-sdk/server/config"
|
"github.com/cosmos/cosmos-sdk/server/config"
|
||||||
"github.com/cosmos/cosmos-sdk/server/types"
|
"github.com/cosmos/cosmos-sdk/server/types"
|
||||||
|
"github.com/cosmos/cosmos-sdk/simapp"
|
||||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||||
"github.com/cosmos/cosmos-sdk/version"
|
"github.com/cosmos/cosmos-sdk/version"
|
||||||
)
|
)
|
||||||
|
@ -289,3 +290,19 @@ func addrToIP(addr net.Addr) net.IP {
|
||||||
}
|
}
|
||||||
return ip
|
return ip
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func openDB(rootDir string) (dbm.DB, error) {
|
||||||
|
dataDir := filepath.Join(rootDir, "data")
|
||||||
|
return sdk.NewLevelDB("application", dataDir)
|
||||||
|
}
|
||||||
|
|
||||||
|
func openTraceWriter(traceWriterFile string) (w io.Writer, err error) {
|
||||||
|
if traceWriterFile == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return os.OpenFile(
|
||||||
|
traceWriterFile,
|
||||||
|
os.O_WRONLY|os.O_APPEND|os.O_CREATE,
|
||||||
|
0666,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue