diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-05-03 19:19:05 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-05-03 19:19:05 +0800 |
commit | 488528e9e4bea886b381fad4333b1a61553eb2ed (patch) | |
tree | 3173d43775195e3055c5553ec54b5bb6012b86c7 /node/node.go | |
parent | 1c20313a6a1a35d5f540f878e7c263327c2ccfc1 (diff) | |
parent | 4536b993ff6a5b3751f59b52744078e150296654 (diff) | |
download | dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.gz dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.bz2 dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.lz dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.xz dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.zst dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.zip |
Merge pull request #2497 from karalabe/version-contract-3
Geth release oracle
Diffstat (limited to 'node/node.go')
-rw-r--r-- | node/node.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/node.go b/node/node.go index 18c3f91d8..06a1b7aed 100644 --- a/node/node.go +++ b/node/node.go @@ -311,7 +311,7 @@ func (n *Node) startIPC(apis []rpc.API) error { glog.V(logger.Error).Infof("IPC accept failed: %v", err) continue } - go handler.ServeCodec(rpc.NewJSONCodec(conn), rpc.OptionMethodInvocation | rpc.OptionSubscriptions) + go handler.ServeCodec(rpc.NewJSONCodec(conn), rpc.OptionMethodInvocation|rpc.OptionSubscriptions) } }() // All listeners booted successfully |