Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
claravanstaden committed Sep 10, 2024
1 parent 7280cee commit 09ab053
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
1 change: 0 additions & 1 deletion bridges/snowbridge/primitives/beacon/src/types.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use std::convert::TryInto;
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: 2023 Snowfork <[email protected]>
use codec::{Decode, Encode, MaxEncodedLen};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ parameter_types! {
deneb: Fork {
version: [4, 0, 0, 0], // 0x04000000
epoch: 0,
},
electra: Fork {
version: [5, 0, 0, 0], // 0x05000000
epoch: 80000000000,
}
};
}
Expand Down Expand Up @@ -163,6 +167,10 @@ parameter_types! {
version: [144, 0, 0, 115], // 0x90000073
epoch: 132608,
},
electra: Fork {
version: [144, 0, 0, 115], // 0x90000073
epoch: 80000000,
},
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ parameter_types! {
deneb: Fork {
version: [4, 0, 0, 0], // 0x04000000
epoch: 0,
},
electra: Fork {
version: [5, 0, 0, 0], // 0x05000000
epoch: 80000000000,
}
};
}
Expand Down Expand Up @@ -164,6 +168,10 @@ parameter_types! {
version: [144, 0, 0, 115], // 0x90000073
epoch: 132608,
},
electra: Fork {
version: [144, 0, 0, 115], // 0x90000073
epoch: 80000000,
},
};
}

Expand Down

0 comments on commit 09ab053

Please sign in to comment.