2015-06-08 11:23:54 +03:00
|
|
|
package api
|
|
|
|
|
2015-06-09 11:59:44 +03:00
|
|
|
import (
|
|
|
|
"github.com/ethereum/go-ethereum/rpc/shared"
|
|
|
|
)
|
2015-06-08 11:23:54 +03:00
|
|
|
|
2015-06-08 13:43:58 +03:00
|
|
|
// Merge multiple API's to a single API instance
|
2015-06-22 13:47:32 +03:00
|
|
|
func Merge(apis ...shared.EthereumApi) shared.EthereumApi {
|
2015-06-08 13:43:58 +03:00
|
|
|
return newMergedApi(apis...)
|
|
|
|
}
|