Commit 2d7ac0a2 authored by Ethen Pociask's avatar Ethen Pociask

[indexer.withdrawal_type_supplies] rewire dbg to info

parent ae5cc04f
......@@ -460,7 +460,7 @@ func TestClientBridgeFunctions(t *testing.T) {
// (2) Create test actors that will deposit and withdraw using the standard bridge
aliceAddr := testSuite.OpCfg.Secrets.Addresses().Alice
bobAddr := testSuite.OpCfg.Secrets.Addresses().Bob
// malAddr := testSuite.OpCfg.Secrets.Addresses().Mallory
malAddr := testSuite.OpCfg.Secrets.Addresses().Mallory
type actor struct {
addr common.Address
......@@ -482,11 +482,11 @@ func TestClientBridgeFunctions(t *testing.T) {
priv: testSuite.OpCfg.Secrets.Bob,
amt: big.NewInt(0),
},
// {
// addr: malAddr,
// priv: testSuite.OpCfg.Secrets.Mallory,
// amt: big.NewInt(0),
// },
{
addr: malAddr,
priv: testSuite.OpCfg.Secrets.Mallory,
amt: big.NewInt(0),
},
}
type supplies struct {
......
......@@ -109,7 +109,7 @@ func createE2ETestSuite(t *testing.T) E2ETestSuite {
// the system is running, mark this test for Parallel execution
t.Parallel()
indexerLog := testlog.Logger(t, log.LvlDebug).New("role", "indexer")
indexerLog := testlog.Logger(t, log.LvlInfo).New("role", "indexer")
ix, err := indexer.NewIndexer(context.Background(), indexerLog, indexerCfg, func(cause error) {
if cause != nil {
t.Fatalf("indexer shut down with critical error: %v", cause)
......@@ -123,7 +123,7 @@ func createE2ETestSuite(t *testing.T) E2ETestSuite {
require.NoError(t, ix.Stop(context.Background()), "cleanly shut down indexer")
})
apiLog := testlog.Logger(t, log.LvlDebug).New("role", "indexer_api")
apiLog := testlog.Logger(t, log.LvlInfo).New("role", "indexer_api")
apiCfg := &api.Config{
DB: &api.TestDBConnector{BridgeTransfers: ix.DB.BridgeTransfers}, // reuse the same DB
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment