@@ -41,6 +41,7 @@ func TestClientUsingTestnet(t *testing.T) {
41
41
42
42
t .Run ("PutBlobWaitForConfirmationDepth0AndGetBlob" , func (t * testing.T ) {
43
43
t .Parallel ()
44
+ confDepth := uint64 (0 )
44
45
45
46
client , err := NewEigenDAClient (testutils .GetLogger (), EigenDAClientConfig {
46
47
RPC : testRPC ,
@@ -52,7 +53,7 @@ func TestClientUsingTestnet(t *testing.T) {
52
53
CustomQuorumIDs : []uint {},
53
54
SignerPrivateKeyHex : testSignerPrivateKeyHex ,
54
55
WaitForFinalization : false ,
55
- WaitForConfirmationDepth : 0 ,
56
+ WaitForConfirmationDepth : confDepth ,
56
57
SvcManagerAddr : testSvcManagerAddr ,
57
58
EthRpcUrl : testEthRpcUrl ,
58
59
})
@@ -73,18 +74,18 @@ func TestClientUsingTestnet(t *testing.T) {
73
74
confDepth := uint64 (3 )
74
75
75
76
client , err := NewEigenDAClient (testutils .GetLogger (), EigenDAClientConfig {
76
- RPC : "disperser-holesky.eigenda.xyz:443" ,
77
+ RPC : testRPC ,
77
78
// Should need way less than 20 minutes, but we set it to 20 minutes to be safe
78
79
// In worst case we had 10 min batching interval + some time for the tx to land onchain,
79
80
// plus wait for 3 blocks of confirmation.
80
- StatusQueryTimeout : 20 * time . Minute ,
81
- StatusQueryRetryInterval : 5 * time . Second ,
81
+ StatusQueryTimeout : testStatusQueryTimeout ,
82
+ StatusQueryRetryInterval : testStatusQueryRetryInterval ,
82
83
CustomQuorumIDs : []uint {},
83
- SignerPrivateKeyHex : "2d23e142a9e86a9175b9dfa213f20ea01f6c1731e09fa6edf895f70fe279cbb1" ,
84
+ SignerPrivateKeyHex : testSignerPrivateKeyHex ,
84
85
WaitForFinalization : false ,
85
86
WaitForConfirmationDepth : confDepth ,
86
- SvcManagerAddr : "0xD4A7E1Bd8015057293f0D0A557088c286942e84b" ,
87
- EthRpcUrl : "https://1rpc.io/holesky" ,
87
+ SvcManagerAddr : testSvcManagerAddr ,
88
+ EthRpcUrl : testEthRpcUrl ,
88
89
})
89
90
data := "hello world!"
90
91
assert .NoError (t , err )
0 commit comments