Increased filter ticker time to 5 minutes

This commit is contained in:
obscuren 2015-03-14 18:57:12 +01:00
parent 95711bc2dd
commit 12cee1377f
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import (
var (
defaultGasPrice = big.NewInt(150000000000)
defaultGas = big.NewInt(500000)
filterTickerTime = 15 * time.Second
filterTickerTime = 5 * time.Minute
)
type EthereumApi struct {
@ -573,7 +573,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
return err
}
*reply = toHex(big.NewInt(v).Bytes())
case "eth_getData":
case "eth_getData", "eth_getCode":
args := new(GetDataArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err