diff --git a/cmd/rpcdaemon/README.md b/cmd/rpcdaemon/README.md index 76e1c56d104e8a43d64a4b0e3b2c5a5210635cde..0ce023e1347929e535632e646edb3d66408a978a 100644 --- a/cmd/rpcdaemon/README.md +++ b/cmd/rpcdaemon/README.md @@ -269,7 +269,7 @@ The following table shows the current implementation status of Erigon's RPC daem | erigon_getLogsByHash | Yes | Erigon only | | erigon_forks | Yes | Erigon only | | erigon_issuance | Yes | Erigon only | -| erigon_getBlockByTimeStamp | Yes | Erigon only | +| erigon_GetBlockByTimestamp | Yes | Erigon only | | | | | | starknet_call | Yes | Starknet only | | | | | diff --git a/cmd/rpcdaemon/commands/erigon_api.go b/cmd/rpcdaemon/commands/erigon_api.go index 5a5254d1d20a0cf352ba1797b14a3d27f7b80c18..864eaf6d33b2d05f01c9919838ff23c622e14f29 100644 --- a/cmd/rpcdaemon/commands/erigon_api.go +++ b/cmd/rpcdaemon/commands/erigon_api.go @@ -19,7 +19,7 @@ type ErigonAPI interface { // Blocks related (see ./erigon_blocks.go) GetHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error) GetHeaderByHash(_ context.Context, hash common.Hash) (*types.Header, error) - GetBlockByTimeStamp(ctx context.Context, timeStamp uint64, fullTx bool) (map[string]interface{}, error) + GetBlockByTimestamp(ctx context.Context, timeStamp uint64, fullTx bool) (map[string]interface{}, error) // Receipt related (see ./erigon_receipts.go) GetLogsByHash(ctx context.Context, hash common.Hash) ([][]*types.Log, error) diff --git a/cmd/rpcdaemon/commands/erigon_block.go b/cmd/rpcdaemon/commands/erigon_block.go index eaac6eec235da2581ad404b2f5f0c1ba675e2724..b8aaf2604523d566718456462a780e01411077ad 100644 --- a/cmd/rpcdaemon/commands/erigon_block.go +++ b/cmd/rpcdaemon/commands/erigon_block.go @@ -62,7 +62,7 @@ func (api *ErigonImpl) GetHeaderByHash(ctx context.Context, hash common.Hash) (* return header, nil } -func (api *ErigonImpl) GetBlockByTimeStamp(ctx context.Context, timeStamp uint64, fullTx bool) (map[string]interface{}, error) { +func (api *ErigonImpl) GetBlockByTimestamp(ctx context.Context, timeStamp uint64, fullTx bool) (map[string]interface{}, error) { tx, err := api.db.BeginRo(ctx) if err != nil { return nil, err diff --git a/cmd/rpcdaemon/commands/eth_call_test.go b/cmd/rpcdaemon/commands/eth_call_test.go index 74d0f78bb4dab826f11dd653b0501119d3a733b4..d156cf2bf5b555b35bf805625ef11106c054ead2 100644 --- a/cmd/rpcdaemon/commands/eth_call_test.go +++ b/cmd/rpcdaemon/commands/eth_call_test.go @@ -44,7 +44,7 @@ func TestEthCallNonCanonical(t *testing.T) { } } -func TestGetBlockByTimeStampLatestTime(t *testing.T) { +func TestGetBlockByTimestampLatestTime(t *testing.T) { ctx := context.Background() db := rpcdaemontest.CreateTestKV(t) @@ -71,7 +71,7 @@ func TestGetBlockByTimeStampLatestTime(t *testing.T) { } } - block, err := api.GetBlockByTimeStamp(ctx, latestBlock.Header().Time, false) + block, err := api.GetBlockByTimestamp(ctx, latestBlock.Header().Time, false) if err != nil { t.Errorf("couldn't retrieve block %v", err) } @@ -81,7 +81,7 @@ func TestGetBlockByTimeStampLatestTime(t *testing.T) { } } -func TestGetBlockByTimeStampOldestTime(t *testing.T) { +func TestGetBlockByTimestampOldestTime(t *testing.T) { ctx := context.Background() db := rpcdaemontest.CreateTestKV(t) @@ -112,7 +112,7 @@ func TestGetBlockByTimeStampOldestTime(t *testing.T) { } } - block, err := api.GetBlockByTimeStamp(ctx, oldestBlock.Header().Time, false) + block, err := api.GetBlockByTimestamp(ctx, oldestBlock.Header().Time, false) if err != nil { t.Errorf("couldn't retrieve block %v", err) } @@ -150,7 +150,7 @@ func TestGetBlockByTimeHigherThanLatestBlock(t *testing.T) { } } - block, err := api.GetBlockByTimeStamp(ctx, latestBlock.Header().Time+999999999999, false) + block, err := api.GetBlockByTimestamp(ctx, latestBlock.Header().Time+999999999999, false) if err != nil { t.Errorf("couldn't retrieve block %v", err) } @@ -195,7 +195,7 @@ func TestGetBlockByTimeMiddle(t *testing.T) { } } - block, err := api.GetBlockByTimeStamp(ctx, middleBlock.Header().Time, false) + block, err := api.GetBlockByTimestamp(ctx, middleBlock.Header().Time, false) if err != nil { t.Errorf("couldn't retrieve block %v", err) } @@ -205,7 +205,7 @@ func TestGetBlockByTimeMiddle(t *testing.T) { } } -func TestGetBlockByTimeStamp(t *testing.T) { +func TestGetBlockByTimestamp(t *testing.T) { ctx := context.Background() db := rpcdaemontest.CreateTestKV(t) @@ -240,7 +240,7 @@ func TestGetBlockByTimeStamp(t *testing.T) { } } - block, err := api.GetBlockByTimeStamp(ctx, pickedBlock.Header().Time, false) + block, err := api.GetBlockByTimestamp(ctx, pickedBlock.Header().Time, false) if err != nil { t.Errorf("couldn't retrieve block %v", err) }