File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,6 @@ export const STATUS_SUCCEEDED = 'SUCCEEDED';
2222export type STATUS_REVERTED = 'REVERTED' ;
2323export const STATUS_REVERTED = 'REVERTED' ;
2424
25- /**
26- * The block was rejected and will not be included
27- */
28- export type STATUS_REJECTED = 'REJECTED' ;
29- export const STATUS_REJECTED = 'REJECTED' ;
30-
3125/**
3226 * The transaction was received by the sequencer
3327 */
Original file line number Diff line number Diff line change 11import type { CONTRACT_EXECUTION_ERROR } from './components.js' ;
2- import type { STATUS_RECEIVED , STATUS_REJECTED } from './constants.js' ;
2+ import type { STATUS_RECEIVED } from './constants.js' ;
33
44export interface FAILED_TO_RECEIVE_TXN {
55 code : 1 ;
@@ -10,7 +10,7 @@ export interface NO_TRACE_AVAILABLE {
1010 code : 10 ;
1111 message : 'No trace available for transaction' ;
1212 data : {
13- status : STATUS_RECEIVED | STATUS_REJECTED ;
13+ status : STATUS_RECEIVED | 'REJECTED' ; // TODO: this is probably for old transactions
1414 } ;
1515}
1616
You can’t perform that action at this time.
0 commit comments