Skip to content

Commit 698d65f

Browse files
committed
remove block_id from starknet_subscribeTransactionStatus
1 parent ba5e78f commit 698d65f

File tree

3 files changed

+8
-16
lines changed

3 files changed

+8
-16
lines changed

rpc/handlers.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ func (h *Handler) Methods() ([]jsonrpc.Method, string) { //nolint: funlen
366366
},
367367
{
368368
Name: "starknet_subscribeTransactionStatus",
369-
Params: []jsonrpc.Parameter{{Name: "transaction_hash"}, {Name: "block_id", Optional: true}},
369+
Params: []jsonrpc.Parameter{{Name: "transaction_hash"}},
370370
Handler: h.SubscribeTransactionStatus,
371371
},
372372
{

rpc/subscriptions.go

+1-9
Original file line numberDiff line numberDiff line change
@@ -108,22 +108,14 @@ func (h *Handler) SubscribeEvents(ctx context.Context, fromAddr *felt.Felt, keys
108108
// The optional block_id parameter is ignored, as status changes are not stored and historical data cannot be sent.
109109
//
110110
//nolint:gocyclo,funlen
111-
func (h *Handler) SubscribeTransactionStatus(ctx context.Context, txHash felt.Felt, blockID *BlockID) (*SubscriptionID,
111+
func (h *Handler) SubscribeTransactionStatus(ctx context.Context, txHash felt.Felt) (*SubscriptionID,
112112
*jsonrpc.Error,
113113
) {
114114
w, ok := jsonrpc.ConnFromContext(ctx)
115115
if !ok {
116116
return nil, jsonrpc.Err(jsonrpc.MethodNotFound, nil)
117117
}
118118

119-
// resolveBlockRange is only used to make sure that the requested block id is not older than 1024 block and check
120-
// if the requested block is found. The range is inconsequential since we assume the provided transaction hash
121-
// of a transaction is included in the block range: latest/pending - 1024.
122-
_, _, rpcErr := h.resolveBlockRange(blockID)
123-
if rpcErr != nil {
124-
return nil, rpcErr
125-
}
126-
127119
// If the error is transaction not found that means the transaction has not been submitted to the feeder gateway,
128120
// therefore, we need to wait for a specified time and at regular interval check if the transaction has been found.
129121
// If the transaction is found during the timout expiry, then we continue to keep track of its status otherwise the

rpc/subscriptions_test.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ func TestSubscribeTxnStatus(t *testing.T) {
352352

353353
subCtx := context.WithValue(context.Background(), jsonrpc.ConnKey{}, &fakeConn{w: serverConn})
354354

355-
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash, nil)
355+
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash)
356356
assert.Nil(t, id)
357357
assert.Equal(t, ErrTxnHashNotFound, rpcErr)
358358
})
@@ -381,7 +381,7 @@ func TestSubscribeTxnStatus(t *testing.T) {
381381
mockChain.EXPECT().HeadsHeader().Return(&core.Header{Number: 1024}, nil)
382382
mockChain.EXPECT().BlockHeaderByNumber(blockID.Number).Return(&core.Header{Number: 0}, nil)
383383

384-
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash, blockID)
384+
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash)
385385
assert.Zero(t, id)
386386
assert.Equal(t, ErrTooManyBlocksBack, rpcErr)
387387
})
@@ -390,7 +390,7 @@ func TestSubscribeTxnStatus(t *testing.T) {
390390
mockChain.EXPECT().HeadsHeader().Return(&core.Header{Number: 2024}, nil)
391391
mockChain.EXPECT().BlockHeaderByNumber(blockID.Number).Return(&core.Header{Number: 0}, nil)
392392

393-
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash, blockID)
393+
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash)
394394
assert.Zero(t, id)
395395
assert.Equal(t, ErrTooManyBlocksBack, rpcErr)
396396
})
@@ -422,7 +422,7 @@ func TestSubscribeTxnStatus(t *testing.T) {
422422

423423
ctx, cancel := context.WithCancel(context.Background())
424424
subCtx := context.WithValue(ctx, jsonrpc.ConnKey{}, &fakeConn{w: serverConn})
425-
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash, nil)
425+
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash)
426426
require.Nil(t, rpcErr)
427427

428428
b, err := TxnStatusRejected.MarshalText()
@@ -453,7 +453,7 @@ func TestSubscribeTxnStatus(t *testing.T) {
453453

454454
ctx, cancel := context.WithCancel(context.Background())
455455
subCtx := context.WithValue(ctx, jsonrpc.ConnKey{}, &fakeConn{w: serverConn})
456-
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash, nil)
456+
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash)
457457
require.Nil(t, rpcErr)
458458

459459
b, err := TxnStatusAcceptedOnL1.MarshalText()
@@ -502,7 +502,7 @@ func TestSubscribeTxnStatus(t *testing.T) {
502502

503503
ctx, cancel := context.WithCancel(context.Background())
504504
subCtx := context.WithValue(ctx, jsonrpc.ConnKey{}, &fakeConn{w: serverConn})
505-
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash, nil)
505+
id, rpcErr := handler.SubscribeTransactionStatus(subCtx, *txHash)
506506
require.Nil(t, rpcErr)
507507

508508
b, err := TxnStatusReceived.MarshalText()

0 commit comments

Comments
 (0)