fix: use proposer wallet for PoA transaction acceptance in training stage
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m12s
Documentation Validation / validate-docs (push) Failing after 9s
Documentation Validation / validate-policies-strict (push) Successful in 5s
Multi-Node Stress Testing / stress-test (push) Successful in 3s
Node Failover Simulation / failover-test (push) Successful in 7s

- Switch from faucet wallet to proposer wallet for funding
- Proposer is the current PoA proposer and valid signer
- Send 1M AIT from genesis to proposer first
- Send 100 AIT from proposer to training-w1
- Increased sleep times to 15s for transaction confirmation
This commit is contained in:
aitbc
2026-05-05 16:38:19 +02:00
parent a2601c7697
commit d0e474e5ce

View File

@@ -16,14 +16,9 @@
"args": [],
"re": "training-w1"
},
{
"cmd": "wallet create",
"args": ["faucet", "faucetpw"],
"exit_code": 0
},
{
"cmd": "wallet send",
"args": ["genesis", "faucet", "500000", "EzE4d8cLJo20E9FlquSXq7hqy-e6p4M7Q1ZkM5eLpmY"],
"args": ["genesis", "proposer", "1000000", "EzE4d8cLJo20E9FlquSXq7hqy-e6p4M7Q1ZkM5eLpmY"],
"exit_code": 0
},
{
@@ -33,12 +28,12 @@
},
{
"cmd": "sleep",
"args": ["10"],
"args": ["15"],
"exit_code": 0
},
{
"cmd": "wallet send",
"args": ["faucet", "training-w1", "100", "faucetpw"],
"args": ["proposer", "training-w1", "100", ""],
"exit_code": 0
},
{
@@ -48,7 +43,7 @@
},
{
"cmd": "sleep",
"args": ["10"],
"args": ["15"],
"exit_code": 0
},
{