Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrower95 committed Aug 12, 2024
1 parent 77f0207 commit 82dcbd7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@ func main() {
txns, err := core.SubmitCheckpointProof(ctx, sender, eigenpodAddress, chainId, proof, eth, batchSize, noPrompt, simulateTransaction)
if simulateTransaction {
for i, txn := range txns {
color.Green("transaction(%d).to: %s", i, txn.To().Hex())
color.Green("transaction(%d).calldata: %s", i, hex.EncodeToString(txn.Data()))
}
} else {
Expand Down Expand Up @@ -539,6 +540,7 @@ func main() {
txns, err := core.SubmitValidatorProof(ctx, sender, eigenpodAddress, chainId, eth, batchSize, validatorProofs, oracleBeaconTimestamp, noPrompt, simulateTransaction)
if simulateTransaction {
for i, txn := range txns {
color.Green("transaction(%d).to: %s", i, txn.To().Hex())
color.Green("transaction(%d).calldata: %s", i, hex.EncodeToString(txn.Data()))
}
} else {
Expand Down

0 comments on commit 82dcbd7

Please sign in to comment.