Skip to content

Commit fcc1568

Browse files
committed
ci: fix bdk output
1 parent bdb29fd commit fcc1568

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/node-only-update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
if: success() || failure()
188188
uses: UniqueNetwork/baedeker-action/reconcile@built
189189
with:
190-
baedeker: ${{ steps.bdk.baedeker }}
190+
baedeker: ${{ steps.bdk.outputs.baedeker }}
191191
# Chain should always be built with the mainnet spec, this we first set binary for all nodes expect one, then set mainnet binary for the last node, and then force chainspec to be still generated from mainnet
192192
inputs: |
193193
snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/unique':{dockerImage:'${{ steps.latest.outputs.name }}'}}, leave = 1, for_chain = false)
@@ -205,7 +205,7 @@ jobs:
205205
if: success() || failure()
206206
uses: UniqueNetwork/baedeker-action/reconcile@built
207207
with:
208-
baedeker: ${{ steps.bdk.baedeker }}
208+
baedeker: ${{ steps.bdk.outputs.baedeker }}
209209
# Chain should always be built with the mainnet spec, this we first set binary for all nodes, and then force chainspec to be still generated from mainnet
210210
inputs: |
211211
snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/unique':{dockerImage:'${{ steps.latest.outputs.name }}'}}, for_chain = false)

runtime/common/config/pallets/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ impl BlockNumberProvider for OnInitializeBlockNumberProvider {
112112

113113
fn current_block_number() -> Self::BlockNumber {
114114
// This code was broken previously, but after fixing, we decided it would be better to leave it broken for now.
115-
0u32.into()
115+
0
116116
// use hex_literal::hex;
117117
// use parity_scale_codec::Decode;
118118
// use sp_io::storage;

0 commit comments

Comments
 (0)