mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
1bd46089e9
* Starting process of rearranging RPC code * First version of automated testing * Putting RPC docs in their own folder * Fixing build * Making varible names more consistent * Adding deprecated RPC commands for db_ * Adding deprecated RPC commands for shh_ * Adding deprecated RPC commands for eth_
37 lines
1.3 KiB
Go
37 lines
1.3 KiB
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
// GetCompilers Returns a list of available compilers in the client. (deprecated)
|
|
func (api *APIImpl) GetCompilers(_ context.Context) (string, error) {
|
|
return "", fmt.Errorf(NotAvailableDeprecated, "eth_getCompilers")
|
|
}
|
|
|
|
// CompileLLL Returns compiled LLL code. (deprecated)
|
|
func (api *APIImpl) CompileLLL(_ context.Context, _ string) (string, error) {
|
|
return "", fmt.Errorf(NotAvailableDeprecated, "eth_compileLLL")
|
|
}
|
|
|
|
// CompileSolidity Returns compiled solidity code. (deprecated)
|
|
func (api *APIImpl) CompileSolidity(ctx context.Context, _ string) (string, error) {
|
|
return "", fmt.Errorf(NotAvailableDeprecated, "eth_compileSolidity")
|
|
}
|
|
|
|
// CompileSerpent Returns compiled serpent code. (deprecated)
|
|
func (api *APIImpl) CompileSerpent(ctx context.Context, _ string) (string, error) {
|
|
return "", fmt.Errorf(NotAvailableDeprecated, "eth_compileSerpent")
|
|
}
|
|
|
|
// Accounts Returns a list of addresses owned by client. (deprecated)
|
|
func (api *APIImpl) Accounts(ctx context.Context) (string, error) {
|
|
return "", fmt.Errorf(NotAvailableDeprecated, "eth_accounts")
|
|
}
|
|
|
|
// Sign The sign method calculates an Ethereum specific signature. (deprecated)
|
|
func (api *APIImpl) Sign(ctx context.Context, _ string, _ string) (string, error) {
|
|
return "", fmt.Errorf(NotAvailableDeprecated, "eth_sign")
|
|
}
|