Skip to content

Commit

Permalink
Merge branch 'eth-rollup-develop' into feature/fix-sequencer-staking-…
Browse files Browse the repository at this point in the history
…tests
  • Loading branch information
mateuszaaa authored Jan 3, 2025
2 parents c0d53bf + 2d117a8 commit be5f3f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pallets/rolldown/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,7 @@ impl<T: Config> Pallet<T> {
requests
}
} else {
PendingSequencerUpdateContent::<T>::remove(hash);
UpdatesExecutionQueue::<T>::remove(UpdatesExecutionQueueNextId::<T>::get());
Default::default()
}
},
Expand Down
2 changes: 1 addition & 1 deletion rollup/node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ pub fn rollup_local_config(
.iter()
.flatten()
.cloned()
.map(|account_id| (0u32, 100u128 * currency::DOLLARS, account_id))
.map(|account_id| (0u32, 300_000_000__000_000_000_000_000_000u128, account_id))
.collect::<Vec<_>>();

rollup_genesis(
Expand Down
2 changes: 1 addition & 1 deletion rollup/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 100,
spec_version: 101,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit be5f3f4

Please sign in to comment.