Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Commit 4c71897

Browse files
authored
Add TODO comment for SimulateBatch (#367)
1 parent 33eaa1f commit 4c71897

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pkg/entrypoint/simulation/callstack.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ func newCallStack(calls []tracer.CallInfo) []*callEntry {
2727
top, _ := stack.Pop()
2828

2929
if strings.Contains(top.Type, "CREATE") {
30-
// TODO: implement...
30+
// TODO: implement
3131
} else if call.Type == revertOpCode {
32-
// TODO: implement...
32+
// TODO: implement
3333
} else {
3434
v, ok := big.NewInt(0).SetString(top.Value, 0)
3535
if !ok {

pkg/modules/checks/standalone.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ func (s *Standalone) PaymasterDeposit() modules.BatchHandlerFunc {
194194
}
195195
}
196196

197+
// TODO: Implement
197198
func (s *Standalone) SimulateBatch() modules.BatchHandlerFunc {
198199
return func(ctx *modules.BatchHandlerCtx) error {
199200
return nil

0 commit comments

Comments
 (0)