mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-10 06:35:54 +00:00
11 lines
212 B
Go
11 lines
212 B
Go
package api
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/rpc/shared"
|
|
)
|
|
|
|
// Merge multiple API's to a single API instance
|
|
func Merge(apis ...shared.EthereumApi) shared.EthereumApi {
|
|
return newMergedApi(apis...)
|
|
}
|