-
Notifications
You must be signed in to change notification settings - Fork 47
/
events.go
59 lines (47 loc) · 1.86 KB
/
events.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2022 The AmazeChain Authors
// This file is part of the AmazeChain library.
//
// The AmazeChain library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The AmazeChain library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the AmazeChain library. If not, see <http://www.gnu.org/licenses/>.
package common
import (
"github.com/amazechain/amc/common/block"
"github.com/amazechain/amc/common/transaction"
"github.com/amazechain/amc/modules/state"
"github.com/libp2p/go-libp2p/core/peer"
)
// NewLocalTxsEvent local txs
type NewLocalTxsEvent struct{ Txs []*transaction.Transaction }
// NewTxsEvent txs
type NewTxsEvent struct{ Txs []*transaction.Transaction }
// NewLogsEvent new logs
type NewLogsEvent struct{ Logs []*block.Log }
// RemovedLogsEvent is posted when a reorg happens // todo blockchain v2
type RemovedLogsEvent struct{ Logs []*block.Log }
// NewPendingLogsEvent is posted when a reorg happens // todo miner v2
type NewPendingLogsEvent struct{ Logs []*block.Log }
// PeerJoinEvent Peer join
type PeerJoinEvent struct{ Peer peer.ID }
// PeerDropEvent Peer drop
type PeerDropEvent struct{ Peer peer.ID }
// DownloaderStartEvent start download
type DownloaderStartEvent struct{}
// DownloaderFinishEvent finish download
type DownloaderFinishEvent struct{}
type ChainHighestBlock struct {
Block block.Block
Inserted bool
}
type MinedEntireEvent struct {
Entire state.EntireCode
}