File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,13 +87,13 @@ func (n *NoopSynchronizer) SubscribePendingTxs() PendingTxSubscription {
87
87
// ReorgBlockRange represents data about reorganised blocks, starting and ending block number and hash
88
88
type ReorgBlockRange struct {
89
89
// StartBlockHash is the hash of the first known block of the orphaned chain
90
- StartBlockHash * felt.Felt `json:"starting_block_hash"`
90
+ StartBlockHash * felt.Felt
91
91
// StartBlockNum is the number of the first known block of the orphaned chain
92
- StartBlockNum uint64 `json:"starting_block_number"`
92
+ StartBlockNum uint64
93
93
// The last known block of the orphaned chain
94
- EndBlockHash * felt.Felt `json:"ending_block_hash"`
94
+ EndBlockHash * felt.Felt
95
95
// Number of the last known block of the orphaned chain
96
- EndBlockNum uint64 `json:"ending_block_number"`
96
+ EndBlockNum uint64
97
97
}
98
98
99
99
func (n * NoopSynchronizer ) PendingBlock () * core.Block {
You can’t perform that action at this time.
0 commit comments