mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-13 16:08:04 -05:00
12 lines
221 B
Go
12 lines
221 B
Go
package watcher
|
|
|
|
import "github.com/scroll-tech/go-ethereum/common"
|
|
|
|
const contractEventsBlocksFetchLimit = int64(10)
|
|
|
|
type relayedMessage struct {
|
|
msgHash common.Hash
|
|
txHash common.Hash
|
|
isSuccessful bool
|
|
}
|