@@ -23,10 +23,10 @@ import (
23
23
"github.com/ethereum/go-ethereum/logger/glog"
24
24
"github.com/ethereum/go-ethereum/p2p/nat"
25
25
"github.com/ethereum/go-ethereum/rpc"
26
- "github.com/ethereum/go-ethereum/xeth"
27
26
"github.com/ethereum/go-ethereum/rpc/api"
28
- "github.com/ethereum/go-ethereum/rpc/comms"
29
27
"github.com/ethereum/go-ethereum/rpc/codec"
28
+ "github.com/ethereum/go-ethereum/rpc/comms"
29
+ "github.com/ethereum/go-ethereum/xeth"
30
30
)
31
31
32
32
func init () {
@@ -132,7 +132,7 @@ var (
132
132
GasPriceFlag = cli.StringFlag {
133
133
Name : "gasprice" ,
134
134
Usage : "Sets the minimal gasprice when mining transactions" ,
135
- Value : new (big.Int ).Mul (big .NewInt (10 ), common .Szabo ).String (),
135
+ Value : new (big.Int ).Mul (big .NewInt (1 ), common .Szabo ).String (),
136
136
}
137
137
138
138
UnlockedAccountFlag = cli.StringFlag {
@@ -279,12 +279,12 @@ var (
279
279
GpoMinGasPriceFlag = cli.StringFlag {
280
280
Name : "gpomin" ,
281
281
Usage : "Minimum suggested gas price" ,
282
- Value : new (big.Int ).Mul (big .NewInt (10 ), common .Szabo ).String (),
282
+ Value : new (big.Int ).Mul (big .NewInt (1 ), common .Szabo ).String (),
283
283
}
284
284
GpoMaxGasPriceFlag = cli.StringFlag {
285
285
Name : "gpomax" ,
286
286
Usage : "Maximum suggested gas price" ,
287
- Value : new (big.Int ).Mul (big .NewInt (1000 ), common .Szabo ).String (),
287
+ Value : new (big.Int ).Mul (big .NewInt (100 ), common .Szabo ).String (),
288
288
}
289
289
GpoFullBlockRatioFlag = cli.IntFlag {
290
290
Name : "gpofull" ,
@@ -432,7 +432,7 @@ func IpcSocketPath(ctx *cli.Context) (ipcpath string) {
432
432
if ctx .GlobalString (IPCPathFlag .Name ) != common .DefaultIpcPath () {
433
433
ipcpath = ctx .GlobalString (IPCPathFlag .Name )
434
434
} else if ctx .GlobalString (DataDirFlag .Name ) != "" &&
435
- ctx .GlobalString (DataDirFlag .Name ) != common .DefaultDataDir () {
435
+ ctx .GlobalString (DataDirFlag .Name ) != common .DefaultDataDir () {
436
436
ipcpath = filepath .Join (ctx .GlobalString (DataDirFlag .Name ), "geth.ipc" )
437
437
}
438
438
}
0 commit comments