Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix benches and remove finality-check
  • Loading branch information
kostekIV committed Nov 18, 2022
commit aaa058963cc02774760b85df7144bafa374437ae
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests-main-devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ jobs:
node-count: 6
reserved-seats: 3
non-reserved-seats: 3
follow-up-finalization-check: true
follow-up-finalization-check: false
timeout-minutes: 15

run-e2e-ban-automatic:
Expand Down
2 changes: 1 addition & 1 deletion aleph-client/src/pallets/staking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ impl StakingApiExt for RootConnection {
) -> anyhow::Result<BlockHash> {
let calls = accounts
.iter()
.map(|(c, s)| {
.map(|(s, c)| {
let b = Staking(bond {
controller: MultiAddress::Id(c.clone()),
value: stake,
Expand Down
Loading