good morning!!!!

Skip to content
Snippets Groups Projects
Commit 12cee137 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Increased filter ticker time to 5 minutes

parent 95711bc2
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment