File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,17 @@ async function main() {
68
68
await sendTransaction ( sudoCallSetCode , sudoAccount ) ;
69
69
console . log ( "Running runtime upgrade - done" ) ;
70
70
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
+
71
82
process . exit ( 0 ) ;
72
83
}
73
84
Original file line number Diff line number Diff line change 92
92
chmod +x bin/baedeker
93
93
./bin/baedeker --version
94
94
95
-
96
-
97
-
98
-
99
-
100
-
101
95
# # Buid the subtensor code from current branch
102
96
# build:
103
97
# name: cargo build
You can’t perform that action at this time.
0 commit comments