Skip to content

Commit f9cb27c

Browse files
committed
remove json tags
1 parent 4d35b80 commit f9cb27c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: sync/sync.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ func (n *NoopSynchronizer) SubscribePendingTxs() PendingTxSubscription {
8787
// ReorgBlockRange represents data about reorganised blocks, starting and ending block number and hash
8888
type ReorgBlockRange struct {
8989
// 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
9191
// StartBlockNum is the number of the first known block of the orphaned chain
92-
StartBlockNum uint64 `json:"starting_block_number"`
92+
StartBlockNum uint64
9393
// The last known block of the orphaned chain
94-
EndBlockHash *felt.Felt `json:"ending_block_hash"`
94+
EndBlockHash *felt.Felt
9595
// Number of the last known block of the orphaned chain
96-
EndBlockNum uint64 `json:"ending_block_number"`
96+
EndBlockNum uint64
9797
}
9898

9999
func (n *NoopSynchronizer) PendingBlock() *core.Block {

0 commit comments

Comments
 (0)