Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-cha committed Sep 25, 2024
1 parent 50ad9c5 commit 62a4cf0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions challenger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ When the `initiate_token_deposit` event is detected in l1, saves it as a `Deposi
type Deposit struct {
EventType string `json:"event_type"`
Sequence uint64 `json:"sequence"`
L1BlockHeight uint64 `json:"l1_block_height"`
L1BlockHeight int64 `json:"l1_block_height"`
From string `json:"from"`
To string `json:"to"`
L1Denom string `json:"l1_denom"`
Expand All @@ -101,7 +101,7 @@ When the `propose_output` event is detected in l1, saves it as a `Output` challe
// Output is the challenge event for the output
type Output struct {
EventType string `json:"event_type"`
L2BlockNumber uint64 `json:"l2_block_number"`
L2BlockNumber int64 `json:"l2_block_number"`
OutputIndex uint64 `json:"output_index"`
OutputRoot []byte `json:"output_root"`
Time time.Time `json:"time"`
Expand Down
4 changes: 2 additions & 2 deletions executor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ type QueryWithdrawalResponse struct {
LatestBlockHash []byte `json:"latest_block_hash"`

// extra info
BlockNumber uint64 `json:"block_number"`
BlockNumber int64 `json:"block_number"`
Receiver string `json:"receiver"`
WithdrawalHash []byte `json:"withdrawal_hash"`
}
Expand Down Expand Up @@ -380,7 +380,7 @@ type QueryWithdrawalResponse struct {
LatestBlockHash []byte `json:"latest_block_hash"`

// extra info
BlockNumber uint64 `json:"block_number"`
BlockNumber int64 `json:"block_number"`
Receiver string `json:"receiver"`
WithdrawalHash []byte `json:"withdrawal_hash"`
}
Expand Down

0 comments on commit 62a4cf0

Please sign in to comment.