good morning!!!!

Skip to content
Snippets Groups Projects
Select Git revision
  • 65a9a265c2049b22f9fe78f0f93715ed00a33014
  • devel default protected
  • concurrent
  • erigon22
  • body-download
  • merge-1
  • mdbx_erigon
  • roaring_up6
  • alpha
  • eth67
  • anchor-log
  • stable
  • naming
  • apache-mutation
  • gc_cache
  • db_migration_reset_blocks
  • mdbx_aug_dbg_64
  • docker_faster_build
  • readme1
  • readme2
  • optimized_fee_history
  • v2022.06.04
  • v2022.04.05
  • v2022.06.03
  • v2022.06.02
  • v2022.06.01
  • v2022.05.09
  • v2022.05.08
  • v2022.05.07
  • v2022.05.06
  • v2022.05.05
  • v2022.05.04
  • v2022.05.03
  • v2022.05.02
  • v2022.05.01
  • v2022.04.04
  • v2022.04.03
  • v2022.04.02
  • v2022.04.01
  • v2022.03.02
  • v2022.03.01
41 results

vm_test.go

Blame
  • Forked from an inaccessible project.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ipc_js.go 1.24 KiB
    // Copyright 2018 The go-ethereum Authors
    // This file is part of the go-ethereum library.
    //
    // The go-ethereum library is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Lesser General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // The go-ethereum library is distributed in the hope that it will be useful,
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    // GNU Lesser General Public License for more details.
    //
    // You should have received a copy of the GNU Lesser General Public License
    // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    
    //go:build js
    // +build js
    
    package jrpc
    
    import (
    	"context"
    	"errors"
    	"net"
    )
    
    var errNotSupported = errors.New("rpc: not supported")
    
    // ipcListen will create a named pipe on the given endpoint.
    func ipcListen(endpoint string) (net.Listener, error) {
    	return nil, errNotSupported
    }
    
    // newIPCConnection will connect to a named pipe with the given endpoint as name.
    func newIPCConnection(ctx context.Context, endpoint string) (net.Conn, error) {
    	return nil, errNotSupported
    }