From 62a4cf0d03a3a42db4d6dc6a480a37220332dc38 Mon Sep 17 00:00:00 2001 From: sh-cha Date: Wed, 25 Sep 2024 18:39:22 +0900 Subject: [PATCH] update readme --- challenger/README.md | 4 ++-- executor/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/challenger/README.md b/challenger/README.md index c00c38c..6d66f9a 100644 --- a/challenger/README.md +++ b/challenger/README.md @@ -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"` @@ -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"` diff --git a/executor/README.md b/executor/README.md index 617ce33..99bdd99 100644 --- a/executor/README.md +++ b/executor/README.md @@ -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"` } @@ -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"` }