index
:
coreth
Avalanche C-Chain service code.
log msg
author
committer
range
dev
devnet-no-plugin
ecstasy-fixes
ecstasy-transfer
geth-tavum
master
multi-coin
about
summary
refs
log
tree
commit
diff
path:
root
/
consensus
/
clique
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
Determinant <tederminant@gmail.com>
2020-08-03 17:16:53 -0400
committer
Determinant <tederminant@gmail.com>
2020-08-03 17:16:53 -0400
commit
c73ba009031126e16da6999468851b33f93e8005
(
patch
)
tree
961111c84794cf3807946d073bcef36ec8ba6025
/
consensus/clique
parent
746a107e2a7bb1f66049240d320e29d0a0536eae
(
diff
)
allow using extra binary data in a block for state transition
Diffstat
(limited to 'consensus/clique')
-rw-r--r--
consensus/clique/clique.go
4
1 files changed, 4 insertions, 0 deletions
diff --git a/consensus/clique/clique.go b/consensus/clique/clique.go
index c97e198..d3ad1d9 100644
--- a/
consensus/clique/clique.go
+++ b/
consensus/clique/clique.go
@@ -736,3 +736,7 @@ func encodeSigHeader(w io.Writer, header *types.Header) {
panic("can't encode: " + err.Error())
}
}
+
+func (c *Clique) ExtraStateChange(_ *types.Block, _ *state.StateDB) error {
+ return nil
+}