You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kernel/validation_interface_callbacks.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ import (
14
14
// Note that these callbacks block any further validation execution when they are called.
15
15
typeValidationInterfaceCallbacksstruct {
16
16
OnBlockCheckedfunc(block*Block, state*BlockValidationState) // Called when a new block has been fully validated. Contains the result of its validation.
17
-
OnPowValidBlockfunc(entry*BlockTreeEntry, block*Block) // Called when a new block extends the header chain and has a valid transaction and segwit merkle root.
17
+
OnPoWValidBlockfunc(block*Block, entry*BlockTreeEntry) // Called when a new block extends the header chain and has a valid transaction and segwit merkle root.
18
18
OnBlockConnectedfunc(block*Block, entry*BlockTreeEntry) // Called when a block is valid and has now been connected to the best chain.
19
19
OnBlockDisconnectedfunc(block*Block, entry*BlockTreeEntry) // Called during a re-org when a block has been removed from the best chain.
0 commit comments