Skip to content

Commit 954b9ba

Browse files
committed
Add (failing) balance transfer
1 parent 9a7a2e3 commit 954b9ba

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.baedeker/util/runtimeUpgrade.js

+11
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,17 @@ async function main() {
6868
await sendTransaction(sudoCallSetCode, sudoAccount);
6969
console.log("Running runtime upgrade - done");
7070

71+
// CI test - failed tx
72+
73+
// Test that chain is functionning with a balance transfer
74+
const bob = keyring.addFromUri("//Bob");
75+
// const balanceTransfer = api.tx.balances.transferKeepAlive(bob.address, `1000000000`);
76+
const balanceTransfer = api.tx.balances.transferKeepAlive(sudoAccount.address, `1000000000`);
77+
console.log("Executing balance transfer...");
78+
// await sendTransaction(balanceTransfer, sudoAccount);
79+
await sendTransaction(balanceTransfer, bob);
80+
console.log("Balance transfer successful");
81+
7182
process.exit(0);
7283
}
7384

.github/workflows/check-finney-data.yml

-6
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,6 @@ jobs:
9292
chmod +x bin/baedeker
9393
./bin/baedeker --version
9494
95-
96-
97-
98-
99-
100-
10195
# # Buid the subtensor code from current branch
10296
# build:
10397
# name: cargo build

0 commit comments

Comments
 (0)