@@ -126,7 +126,6 @@ contract LiveProposalCheck is Test, ProposalChecker, Networks {
126126 }
127127
128128 proposalMap.setEnv (envPath);
129- console.log ("executeTemporalGovernorQueuedProposals " );
130129 HybridProposal proposal = HybridProposal (
131130 deployCode (proposalPath)
132131 );
@@ -248,10 +247,6 @@ contract LiveProposalCheck is Test, ProposalChecker, Networks {
248247 ,
249248
250249 ) = governor.proposalInformation (proposalId);
251- console.log ("votingStartTime: " , votingStartTime);
252- console.log ("endTimestamp: " , endTimestamp);
253- console.log ("block.timestamp: " , block .timestamp );
254-
255250 // Only vote if not in voting period
256251 if (
257252 block .timestamp > votingStartTime &&
@@ -309,7 +304,6 @@ contract LiveProposalCheck is Test, ProposalChecker, Networks {
309304 }
310305
311306 proposalMap.setEnv (envPath);
312- console.log ("__executeProposalActions " );
313307
314308 Proposal proposal = Proposal (deployCode (proposalPath));
315309 vm.label (address (proposal), proposalPath);
@@ -474,7 +468,6 @@ contract LiveProposalCheck is Test, ProposalChecker, Networks {
474468
475469 temporalGovernor.queueProposal (vaa);
476470
477- console.log ("block timestamp after queueing: " , block .timestamp );
478471 vm.warp (block .timestamp + temporalGovernor.proposalDelay ());
479472
480473 try temporalGovernor.executeProposal (vaa) {} catch (bytes memory e ) {
@@ -498,7 +491,6 @@ contract LiveProposalCheck is Test, ProposalChecker, Networks {
498491 }
499492
500493 proposalMap.setEnv (envPath);
501- console.log ("_execExtChain " );
502494 Proposal proposal = Proposal (deployCode (proposalPath));
503495 vm.makePersistent (address (proposal));
504496 vm.selectFork (proposal.primaryForkId ());
@@ -508,9 +500,6 @@ contract LiveProposalCheck is Test, ProposalChecker, Networks {
508500
509501 vm.selectFork (activeFork);
510502
511- console.log ("temporalGovernor " );
512- console.log (address (temporalGovernor));
513-
514503 temporalGovernor.executeProposal (vaa);
515504
516505 proposal.afterSimulationHook (addresses);
0 commit comments