Changed config to confer, TOML format.

This commit is contained in:
Jae Kwon
2015-01-08 16:40:23 -08:00
parent e2f622b08a
commit 05c642a84c
14 changed files with 153 additions and 220 deletions

View File

@@ -4,7 +4,7 @@ import (
. "github.com/tendermint/tendermint/account"
. "github.com/tendermint/tendermint/binary"
. "github.com/tendermint/tendermint/block"
. "github.com/tendermint/tendermint/config"
"github.com/tendermint/tendermint/config"
"bytes"
"testing"
@@ -60,7 +60,7 @@ func TestGenesisSaveLoad(t *testing.T) {
// Mutate the state to append one empty block.
block := &Block{
Header: &Header{
Network: Config.Network,
Network: config.App.GetString("Network"),
Height: 1,
Time: s0.LastBlockTime.Add(time.Minute),
Fees: 0,