Skip to content

Commit

Permalink
remove json tags
Browse files Browse the repository at this point in the history
  • Loading branch information
weiihann committed Dec 19, 2024
1 parent 45c0dd6 commit 7e13e0b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sync/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ func (n *NoopSynchronizer) SubscribePendingTxs() PendingTxSubscription {
// ReorgBlockRange represents data about reorganised blocks, starting and ending block number and hash
type ReorgBlockRange struct {
// StartBlockHash is the hash of the first known block of the orphaned chain
StartBlockHash *felt.Felt `json:"starting_block_hash"`
StartBlockHash *felt.Felt
// StartBlockNum is the number of the first known block of the orphaned chain
StartBlockNum uint64 `json:"starting_block_number"`
StartBlockNum uint64
// The last known block of the orphaned chain
EndBlockHash *felt.Felt `json:"ending_block_hash"`
EndBlockHash *felt.Felt
// Number of the last known block of the orphaned chain
EndBlockNum uint64 `json:"ending_block_number"`
EndBlockNum uint64
}

func (n *NoopSynchronizer) PendingBlock() *core.Block {
Expand Down

0 comments on commit 7e13e0b

Please sign in to comment.