Skip to content

Commit 8de66d8

Browse files
committed
Merge branch 'master' into electra-support
2 parents 66f1f6f + 293b654 commit 8de66d8

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

pkg/coordinator/web/handlers/registry.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ func (fh *FrontendHandler) getTestRegistryData(idx int, test types.TestDescripto
199199
testData.Name = testConfig.Name
200200
}
201201

202-
if !fh.securityTrimmed {
202+
if !fh.securityTrimmed && test.Vars() != nil {
203203
configJSON, err := json.Marshal(test.Vars().GetVarsMap(nil, true))
204204
if err == nil {
205205
testData.Config = string(configJSON)

playbooks/dev/fund-wallet.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
id: fund-wallet
2+
name: "Send funds to a wallet"
3+
timeout: 12h
4+
config:
5+
targetAddress: "0x000000000000000000000000000000000000dEaD"
6+
amount: "1000000000000000000" # 1 ETH
7+
walletPrivkey: ""
8+
tasks:
9+
- name: check_clients_are_healthy
10+
title: "Check if at least one client is ready"
11+
timeout: 5m
12+
config:
13+
minClientCount: 1
14+
15+
- name: generate_transaction
16+
title: "Send funds to the target address"
17+
config:
18+
feeCap: 5000000000 # 5 gwei
19+
gasLimit: 100000
20+
awaitReceipt: true
21+
configVars:
22+
privateKey: "walletPrivkey"
23+
targetAddress: "targetAddress"
24+
amount: "amount"

0 commit comments

Comments
 (0)