-
Notifications
You must be signed in to change notification settings - Fork 22
/
bridge_stop_resume.go
85 lines (76 loc) · 2 KB
/
bridge_stop_resume.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package banking
import (
"context"
"code.vegaprotocol.io/vega/core/types"
)
func (e *Engine) BridgeStopped(
ctx context.Context,
stopped bool,
id string,
block, logIndex uint64,
ethTxHash string,
) error {
aa := &assetAction{
id: id,
state: newPendingState(),
erc20BridgeStopped: &types.ERC20EventBridgeStopped{BridgeStopped: stopped},
blockHeight: block,
logIndex: logIndex,
txHash: ethTxHash,
bridgeView: e.bridgeView,
}
e.assetActs[aa.id] = aa
return e.witness.StartCheck(aa, e.onCheckDone, e.timeService.GetTimeNow().Add(defaultValidationDuration))
}
func (e *Engine) BridgeResumed(
ctx context.Context,
resumed bool,
id string,
block, logIndex uint64,
ethTxHash string,
) error {
aa := &assetAction{
id: id,
state: newPendingState(),
erc20BridgeResumed: &types.ERC20EventBridgeResumed{BridgeResumed: resumed},
blockHeight: block,
logIndex: logIndex,
txHash: ethTxHash,
bridgeView: e.bridgeView,
}
e.assetActs[aa.id] = aa
return e.witness.StartCheck(aa, e.onCheckDone, e.timeService.GetTimeNow().Add(defaultValidationDuration))
}
type bridgeState struct {
// is the operation suspended, or as usual
active bool
// last block + log index we received an update from the bridge
// this will be used later to verify no new state of the bridge is processed
// in a wrong orderi
block, logIndex uint64
}
func (b *bridgeState) IsStopped() bool {
return !b.active
}
func (b *bridgeState) NewBridgeStopped(
block, logIndex uint64,
) {
if b.isNewerEvent(block, logIndex) {
b.active, b.block, b.logIndex = false, block, logIndex
}
}
func (b *bridgeState) NewBridgeResumed(
block, logIndex uint64,
) {
if b.isNewerEvent(block, logIndex) {
b.active, b.block, b.logIndex = true, block, logIndex
}
}
func (b *bridgeState) isNewerEvent(
block, logIndex uint64,
) bool {
if block == b.block {
return logIndex > b.logIndex
}
return block > b.block
}