mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
13 lines
211 B
Go
13 lines
211 B
Go
//go:build !enable_private_api
|
|
|
|
package eth
|
|
|
|
import (
|
|
geth_rpc "github.com/ethereum/go-ethereum/rpc"
|
|
"github.com/status-im/status-go/rpc"
|
|
)
|
|
|
|
func privateAPIs(*rpc.Client) (apis []geth_rpc.API) {
|
|
return nil
|
|
}
|