Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Nov 6, 2023
1 parent 3ca96fc commit c16a222
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions core/lib/multivm/src/interface/types/errors/bootloader_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ pub(crate) enum BootloaderErrorCode {
MintEtherFailed,
FailedToAppendTransactionToL2Block,
FailedToSetL2Block,
FailedToPublishTimestampDataToL1,
L1MessengerPublishingFailed,
L1MessengerLogSendingFailed,
FailedToCallSystemContext,
FailedToPublishTimestampDataToL1,
Unknown,
}

Expand Down Expand Up @@ -63,10 +63,10 @@ impl From<u8> for BootloaderErrorCode {
23 => BootloaderErrorCode::MintEtherFailed,
24 => BootloaderErrorCode::FailedToAppendTransactionToL2Block,
25 => BootloaderErrorCode::FailedToSetL2Block,
26 => BootloaderErrorCode::L1MessengerPublishingFailed,
27 => BootloaderErrorCode::L1MessengerLogSendingFailed,
28 => BootloaderErrorCode::FailedToCallSystemContext,
29 => BootloaderErrorCode::FailedToPublishTimestampDataToL1,
26 => BootloaderErrorCode::FailedToPublishTimestampDataToL1,
27 => BootloaderErrorCode::L1MessengerPublishingFailed,
28 => BootloaderErrorCode::L1MessengerLogSendingFailed,
29 => BootloaderErrorCode::FailedToCallSystemContext,
_ => BootloaderErrorCode::Unknown,
}
}
Expand Down
2 changes: 1 addition & 1 deletion etc/system-contracts

0 comments on commit c16a222

Please sign in to comment.