Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: errors and typos in code #486

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bridge-ui/src/hooks/useFetchBridgeTransactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const useFetchBridgeTransactions = () => {

const updateMessagesStatus = async (transactions: TransactionHistory[], networkType: NetworkType) => {
const promises = transactions.map(async (transaction, index) => {
// Only process the transaction that haves messages with unclaimed or unknwon statuses
// Only process the transaction that haves messages with unclaimed or unknown statuses
const message = transaction.message;
if (message) {
const isMessageClaimed = message.status === OnChainMessageStatus.CLAIMED;
Expand Down
2 changes: 1 addition & 1 deletion config/coordinator/coordinator-docker.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ conflation-deadline="PT6S"
conflation-deadline-check-interval="PT3S"
conflation-deadline-last-block-confirmation-delay="PT2S" # recommended: at least 2 * blockInterval

# This is to prevent inflight trasactions that may change Smart contract state while coordinator is restarted.
# This is to prevent inflight transactions that may change Smart contract state while coordinator is restarted.
# Queries SMC for last finalised block, and keeps polling until this number of blocks observe the same state.
# If state is updated meanwhile, it resets counter and restarts the polling.
consistent-number-of-blocks-on-l1-to-wait=1
Expand Down
2 changes: 1 addition & 1 deletion prover/zkevm/prover/ecdsa/antichamber_constraints.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (ac *antichamber) csTransitions(comp *wizard.CompiledIOP) {
),
)

// stop fetching when recived txsignature
// stop fetching when received txsignature
comp.InsertGlobal(
ROUND_NR,
ifaces.QueryIDf("%v_TRANSITIONS_TXSIGNATURE_FETCHING", NAME_ANTICHAMBER),
Expand Down