2021-06-04 17:20:37 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018-2019 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
|
|
# according to those terms.
|
|
|
|
|
|
|
|
import
|
2023-01-24 14:52:02 +00:00
|
|
|
std/[algorithm, sequtils, strformat, strutils, tables, times],
|
2023-01-31 01:32:17 +00:00
|
|
|
eth/keys,
|
2022-07-21 18:16:28 +00:00
|
|
|
ethash,
|
|
|
|
secp256k1/abi,
|
|
|
|
stew/objects,
|
2022-12-02 04:39:12 +00:00
|
|
|
../../nimbus/[config, constants],
|
|
|
|
../../nimbus/common/common,
|
|
|
|
../../nimbus/core/[chain,
|
2021-07-14 15:13:27 +00:00
|
|
|
clique,
|
2021-07-30 14:06:51 +00:00
|
|
|
clique/clique_desc,
|
2021-08-03 07:15:32 +00:00
|
|
|
clique/clique_genvote,
|
2021-07-21 13:31:52 +00:00
|
|
|
clique/clique_helpers,
|
|
|
|
clique/clique_snapshot,
|
2022-07-21 18:16:28 +00:00
|
|
|
clique/snapshot/ballot,
|
2021-07-14 15:13:27 +00:00
|
|
|
clique/snapshot/snapshot_desc],
|
2022-07-21 18:16:28 +00:00
|
|
|
./voter_samples as vs
|
2021-06-04 17:20:37 +00:00
|
|
|
|
|
|
|
export
|
2021-07-14 15:13:27 +00:00
|
|
|
vs, snapshot_desc
|
2021-06-04 17:20:37 +00:00
|
|
|
|
|
|
|
const
|
|
|
|
prngSeed = 42
|
2023-01-24 14:52:02 +00:00
|
|
|
## The `TestSpecs` sample depends on this seed,
|
2021-06-04 17:20:37 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
XSealKey = array[EXTRA_SEAL,byte]
|
|
|
|
XSealValue = object
|
|
|
|
blockNumber: uint64
|
|
|
|
account: string
|
|
|
|
|
|
|
|
TesterPool* = ref object ## Pool to maintain currently active tester accounts,
|
|
|
|
## mapped from textual names used in the tests below
|
|
|
|
## to actual Ethereum private keys capable of signing
|
|
|
|
## transactions.
|
2023-01-24 14:52:02 +00:00
|
|
|
prng: uint32 ## random state
|
2021-06-04 17:20:37 +00:00
|
|
|
accounts: Table[string,PrivateKey] ## accounts table
|
2021-09-16 15:59:46 +00:00
|
|
|
networkId: NetworkId
|
|
|
|
boot: NetworkParams ## imported Genesis configuration
|
2021-06-04 17:20:37 +00:00
|
|
|
batch: seq[seq[BlockHeader]] ## collect header chains
|
2022-12-02 04:39:12 +00:00
|
|
|
chain: ChainRef
|
2021-06-04 17:20:37 +00:00
|
|
|
|
|
|
|
names: Table[EthAddress,string] ## reverse lookup for debugging
|
|
|
|
xSeals: Table[XSealKey,XSealValue] ## collect signatures for debugging
|
2022-07-21 18:16:28 +00:00
|
|
|
noisy*: bool
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2023-01-24 14:52:02 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private Prng (Clique keeps generated addresses sorted)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc posixPrngInit(state: var uint32; seed: uint32) =
|
|
|
|
state = seed
|
|
|
|
|
|
|
|
proc posixPrngRand(state: var uint32): byte =
|
|
|
|
## POSIX.1-2001 example of a rand() implementation, see manual page rand(3).
|
|
|
|
##
|
|
|
|
## Clique relies on the even/odd position of an address after sorting. For
|
|
|
|
## address generation, the Nim PRNG was used which seems to have changed
|
|
|
|
## with Nim 1.6.11 (Linux, Windoes only.)
|
|
|
|
##
|
|
|
|
## The `TestSpecs` sample depends on `prngSeed` and `posixPrngRand()`.
|
|
|
|
state = state * 1103515245 + 12345;
|
|
|
|
let val = (state shr 16) and 32767 # mod 2^31
|
|
|
|
(val shr 8).byte # Extract second byte
|
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private Helpers
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2021-06-16 15:12:51 +00:00
|
|
|
proc getBlockHeader(ap: TesterPool; number: BlockNumber): BlockHeader =
|
|
|
|
## Shortcut => db/db_chain.getBlockHeader()
|
2022-12-05 11:25:44 +00:00
|
|
|
doAssert ap.chain.clique.db.getBlockHeader(number, result)
|
2021-06-16 15:12:51 +00:00
|
|
|
|
|
|
|
proc getBlockHeader(ap: TesterPool; hash: Hash256): BlockHeader =
|
|
|
|
## Shortcut => db/db_chain.getBlockHeader()
|
2022-12-05 11:25:44 +00:00
|
|
|
doAssert ap.chain.clique.db.getBlockHeader(hash, result)
|
2021-06-16 15:12:51 +00:00
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
proc isZero(a: openArray[byte]): bool =
|
|
|
|
result = true
|
|
|
|
for w in a:
|
|
|
|
if w != 0:
|
|
|
|
return false
|
|
|
|
|
|
|
|
proc rand(ap: TesterPool): byte =
|
2023-01-24 14:52:02 +00:00
|
|
|
ap.prng.posixPrngRand().byte
|
2021-06-04 17:20:37 +00:00
|
|
|
|
|
|
|
proc newPrivateKey(ap: TesterPool): PrivateKey =
|
|
|
|
## Roughly modelled after `random(PrivateKey,getRng()[])` with
|
|
|
|
## non-secure but reproducible PRNG
|
|
|
|
var data{.noinit.}: array[SkRawSecretKeySize,byte]
|
|
|
|
for n in 0 ..< data.len:
|
|
|
|
data[n] = ap.rand
|
|
|
|
# verify generated key, see keys.random(PrivateKey) from eth/keys.nim
|
|
|
|
var dataPtr0 = cast[ptr cuchar](unsafeAddr data[0])
|
|
|
|
doAssert secp256k1_ec_seckey_verify(
|
|
|
|
secp256k1_context_no_precomp, dataPtr0) == 1
|
|
|
|
# Convert to PrivateKey
|
|
|
|
PrivateKey.fromRaw(data).value
|
|
|
|
|
|
|
|
proc privateKey(ap: TesterPool; account: string): PrivateKey =
|
|
|
|
## Return private key for given tester `account`
|
|
|
|
if account != "":
|
|
|
|
if account in ap.accounts:
|
|
|
|
result = ap.accounts[account]
|
|
|
|
else:
|
|
|
|
result = ap.newPrivateKey
|
|
|
|
ap.accounts[account] = result
|
|
|
|
let address = result.toPublicKey.toCanonicalAddress
|
|
|
|
ap.names[address] = account
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private pretty printer call backs
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc findName(ap: TesterPool; address: EthAddress): string =
|
|
|
|
## Find name for a particular address
|
2021-07-14 15:13:27 +00:00
|
|
|
if address notin ap.names:
|
|
|
|
ap.names[address] = &"X{ap.names.len+1}"
|
|
|
|
ap.names[address]
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2021-06-14 18:33:57 +00:00
|
|
|
proc findSignature(ap: TesterPool; sig: openArray[byte]): XSealValue =
|
2021-06-04 17:20:37 +00:00
|
|
|
## Find a previusly registered signature
|
|
|
|
if sig.len == XSealKey.len:
|
|
|
|
let key = toArray(XSealKey.len,sig)
|
|
|
|
if key in ap.xSeals:
|
|
|
|
result = ap.xSeals[key]
|
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc pp(ap: TesterPool; v: BlockNonce): string =
|
2021-06-04 17:20:37 +00:00
|
|
|
## Pretty print nonce
|
|
|
|
if v == NONCE_AUTH:
|
|
|
|
"AUTH"
|
|
|
|
elif v == NONCE_DROP:
|
|
|
|
"DROP"
|
|
|
|
else:
|
|
|
|
&"0x{v.toHex}"
|
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc pp(ap: TesterPool; v: EthAddress): string =
|
2021-06-04 17:20:37 +00:00
|
|
|
## Pretty print address
|
2021-06-11 17:26:08 +00:00
|
|
|
if v.isZero:
|
|
|
|
result = "@0"
|
|
|
|
else:
|
|
|
|
let a = ap.findName(v)
|
|
|
|
if a == "":
|
|
|
|
result = &"@{v}"
|
2021-06-04 17:20:37 +00:00
|
|
|
else:
|
2021-06-11 17:26:08 +00:00
|
|
|
result = &"@{a}"
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc pp*(ap: TesterPool; v: openArray[EthAddress]): seq[string] =
|
|
|
|
## Pretty print address list
|
|
|
|
toSeq(v).mapIt(ap.pp(it))
|
|
|
|
|
|
|
|
proc pp(ap: TesterPool; v: Blob): string =
|
2021-06-04 17:20:37 +00:00
|
|
|
## Visualise `extraData` field
|
|
|
|
|
|
|
|
if v.len < EXTRA_VANITY + EXTRA_SEAL or
|
|
|
|
((v.len - (EXTRA_VANITY + EXTRA_SEAL)) mod EthAddress.len) != 0:
|
|
|
|
result = &"0x{v.toHex}[{v.len}]"
|
|
|
|
else:
|
|
|
|
var data = v
|
|
|
|
#
|
|
|
|
# extra vanity prefix
|
|
|
|
let vanity = data[0 ..< EXTRA_VANITY]
|
|
|
|
data = data[EXTRA_VANITY ..< data.len]
|
|
|
|
result = if vanity.isZero: "0u256+" else: &"{vanity.toHex}+"
|
|
|
|
#
|
|
|
|
# list of addresses
|
|
|
|
if EthAddress.len + EXTRA_SEAL <= data.len:
|
|
|
|
var glue = "["
|
|
|
|
while EthAddress.len + EXTRA_SEAL <= data.len:
|
|
|
|
let address = toArray(EthAddress.len,data[0 ..< EthAddress.len])
|
|
|
|
data = data[EthAddress.len ..< data.len]
|
2022-07-21 18:16:28 +00:00
|
|
|
result &= &"{glue}{ap.pp(address)}"
|
2021-06-04 17:20:37 +00:00
|
|
|
glue = ","
|
|
|
|
result &= "]+"
|
|
|
|
#
|
|
|
|
# signature
|
|
|
|
let val = ap.findSignature(data)
|
|
|
|
if val.account != "":
|
|
|
|
result &= &"<#{val.blockNumber},{val.account}>"
|
|
|
|
elif data.isZero:
|
|
|
|
result &= &"<0>"
|
|
|
|
else:
|
|
|
|
let sig = SkSignature.fromRaw(data)
|
|
|
|
if sig.isOk:
|
|
|
|
result &= &"<{sig.value.toHex}>"
|
|
|
|
else:
|
|
|
|
result &= &"0x{data.toHex}[{data.len}]"
|
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc pp(ap: TesterPool; v: Vote): string =
|
|
|
|
proc authorized(b: bool): string =
|
|
|
|
if b: "authorise" else: "de-authorise"
|
|
|
|
"(" &
|
|
|
|
&"address={ap.pp(v.address)}" &
|
|
|
|
&",signer={ap.pp(v.signer)}" &
|
|
|
|
&",blockNumber=#{v.blockNumber}" &
|
|
|
|
&",{authorized(v.authorize)}" & ")"
|
|
|
|
|
|
|
|
proc pp(ap: TesterPool; h: AddressHistory): string =
|
|
|
|
toSeq(h.keys)
|
|
|
|
.sorted
|
|
|
|
.mapIt("#" & $it & ":" & ap.pp(h[it.u256]))
|
|
|
|
.join(",")
|
|
|
|
|
|
|
|
proc votesList(ap: TesterPool; s: Snapshot; sep: string): string =
|
|
|
|
proc s3Cmp(a, b: (string,string,Vote)): int =
|
|
|
|
result = cmp(a[0], b[0])
|
|
|
|
if result == 0:
|
|
|
|
result = cmp(a[1], b[1])
|
|
|
|
let votes = s.ballot.votesInternal
|
|
|
|
votes.mapIt((ap.pp(it[0]),ap.pp(it[1]),it[2]))
|
|
|
|
.sorted(cmp = s3Cmp)
|
|
|
|
.mapIt(ap.pp(it[2]))
|
|
|
|
.join(sep)
|
|
|
|
|
|
|
|
proc signersList(ap: TesterPool; s: Snapshot): string =
|
|
|
|
ap.pp(s.ballot.authSigners).sorted.join(",")
|
|
|
|
|
|
|
|
proc pp*(ap: TesterPool; s: Snapshot; delim: string): string =
|
|
|
|
## Pretty print descriptor
|
|
|
|
let
|
|
|
|
p1 = if 0 < delim.len: delim else: ";"
|
|
|
|
p2 = if 0 < delim.len and delim[0] == '\n': delim & ' '.repeat(7) else: ";"
|
|
|
|
"(" &
|
|
|
|
&"blockNumber=#{s.blockNumber}" &
|
|
|
|
&"{p1}recents=" & "{" & ap.pp(s.recents) & "}" &
|
|
|
|
&"{p1}signers=" & "{" & ap.signersList(s) & "}" &
|
|
|
|
&"{p1}votes=[" & ap.votesList(s,p2) & "])"
|
|
|
|
|
|
|
|
proc pp*(ap: TesterPool; s: Snapshot; indent = 0): string =
|
|
|
|
## Pretty print descriptor
|
|
|
|
let delim = if 0 < indent: "\n" & ' '.repeat(indent) else: " "
|
|
|
|
ap.pp(s, delim)
|
|
|
|
|
|
|
|
proc pp(ap: TesterPool; v: BlockHeader; delim: string): string =
|
2021-06-04 17:20:37 +00:00
|
|
|
## Pretty print block header
|
2021-06-11 17:26:08 +00:00
|
|
|
let sep = if 0 < delim.len: delim else: ";"
|
2022-07-21 18:16:28 +00:00
|
|
|
&"(blockNumber=#{v.blockNumber}" &
|
2021-07-06 13:14:45 +00:00
|
|
|
&"{sep}parentHash={v.parentHash}" &
|
2021-07-30 14:06:51 +00:00
|
|
|
&"{sep}selfHash={v.blockHash}" &
|
2021-07-06 13:14:45 +00:00
|
|
|
&"{sep}stateRoot={v.stateRoot}" &
|
2022-07-21 18:16:28 +00:00
|
|
|
&"{sep}coinbase={ap.pp(v.coinbase)}" &
|
|
|
|
&"{sep}nonce={ap.pp(v.nonce)}" &
|
|
|
|
&"{sep}extraData={ap.pp(v.extraData)})"
|
|
|
|
|
|
|
|
proc pp(ap: TesterPool; v: BlockHeader; indent = 3): string =
|
|
|
|
## Pretty print block header, NL delimited, indented fields
|
|
|
|
let delim = if 0 < indent: "\n" & ' '.repeat(indent) else: " "
|
|
|
|
ap.pp(v, delim)
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2021-06-16 15:12:51 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private: Constructor helpers
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2021-07-21 13:31:52 +00:00
|
|
|
proc resetChainDb(ap: TesterPool; extraData: Blob; debug = false) =
|
2021-07-14 15:13:27 +00:00
|
|
|
## Setup new block chain with bespoke genesis
|
|
|
|
# new genesis block
|
|
|
|
if 0 < extraData.len:
|
2022-12-02 04:39:12 +00:00
|
|
|
ap.boot.genesis.extraData = extraData
|
|
|
|
|
|
|
|
let com = CommonRef.new(
|
|
|
|
newMemoryDb(),
|
|
|
|
networkId = ap.networkId,
|
|
|
|
params = ap.boot)
|
|
|
|
ap.chain = newChain(com)
|
|
|
|
com.initializeEmptyDB()
|
2022-07-21 18:16:28 +00:00
|
|
|
ap.noisy = debug
|
2021-07-14 15:13:27 +00:00
|
|
|
|
2021-06-16 15:12:51 +00:00
|
|
|
proc initTesterPool(ap: TesterPool): TesterPool {.discardable.} =
|
|
|
|
result = ap
|
2023-01-24 14:52:02 +00:00
|
|
|
result.prng.posixPrngInit(prngSeed)
|
2021-06-04 17:20:37 +00:00
|
|
|
result.batch = @[newSeq[BlockHeader]()]
|
|
|
|
result.accounts = initTable[string,PrivateKey]()
|
|
|
|
result.xSeals = initTable[XSealKey,XSealValue]()
|
|
|
|
result.names = initTable[EthAddress,string]()
|
|
|
|
result.resetChainDb(@[])
|
|
|
|
|
2021-06-16 15:12:51 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
2021-07-14 15:13:27 +00:00
|
|
|
# Public: pretty printer support
|
2021-06-16 15:12:51 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc say*(t: TesterPool; v: varargs[string,`$`]) =
|
2022-07-21 18:16:28 +00:00
|
|
|
if t.noisy:
|
2021-06-16 15:12:51 +00:00
|
|
|
stderr.write v.join & "\n"
|
|
|
|
|
|
|
|
proc sayHeaderChain*(ap: TesterPool; indent = 0): TesterPool {.discardable.} =
|
|
|
|
result = ap
|
|
|
|
let pfx = ' '.repeat(indent)
|
|
|
|
var top = if 0 < ap.batch[^1].len: ap.batch[^1][^1]
|
|
|
|
else: ap.getBlockHeader(0.u256)
|
|
|
|
ap.say pfx, " top header: " & ap.pp(top, 16+indent)
|
|
|
|
while not top.blockNumber.isZero:
|
|
|
|
top = ap.getBlockHeader(top.parentHash)
|
|
|
|
ap.say pfx, "parent header: " & ap.pp(top, 16+indent)
|
|
|
|
|
2021-07-14 15:13:27 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public: Constructor
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc newVoterPool*(networkId = GoerliNet): TesterPool =
|
|
|
|
TesterPool(
|
2021-09-16 15:59:46 +00:00
|
|
|
networkId: networkId,
|
|
|
|
boot: networkParams(networkId)
|
|
|
|
).initTesterPool
|
2021-07-14 15:13:27 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public: getter
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2022-12-02 04:39:12 +00:00
|
|
|
proc chain*(ap: TesterPool): ChainRef =
|
2021-07-14 15:13:27 +00:00
|
|
|
## Getter
|
|
|
|
ap.chain
|
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc clique*(ap: TesterPool): Clique =
|
2021-07-14 15:13:27 +00:00
|
|
|
## Getter
|
|
|
|
ap.chain.clique
|
|
|
|
|
2022-12-02 04:39:12 +00:00
|
|
|
proc db*(ap: TesterPool): ChainDBRef =
|
2021-07-14 15:13:27 +00:00
|
|
|
## Getter
|
2022-12-05 11:25:44 +00:00
|
|
|
ap.clique.db
|
2021-07-14 15:13:27 +00:00
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc cliqueSigners*(ap: TesterPool): seq[EthAddress] =
|
2021-07-14 15:13:27 +00:00
|
|
|
## Getter
|
|
|
|
ap.clique.cliqueSigners
|
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc cliqueSignersLen*(ap: TesterPool): int =
|
2021-07-30 14:06:51 +00:00
|
|
|
## Getter
|
|
|
|
ap.clique.cliqueSignersLen
|
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc snapshot*(ap: TesterPool): Snapshot =
|
2021-07-14 15:13:27 +00:00
|
|
|
## Getter
|
2021-07-21 13:31:52 +00:00
|
|
|
ap.clique.snapshot
|
2021-07-14 15:13:27 +00:00
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc failed*(ap: TesterPool): CliqueFailed =
|
2021-07-14 15:13:27 +00:00
|
|
|
## Getter
|
2021-07-21 13:31:52 +00:00
|
|
|
ap.clique.failed
|
2021-07-14 15:13:27 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public: setter
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
proc `verifyFrom=`*(ap: TesterPool; verifyFrom: uint64) =
|
2021-07-30 14:06:51 +00:00
|
|
|
## Setter, block number where `Clique` should start
|
|
|
|
ap.chain.verifyFrom = verifyFrom
|
|
|
|
|
2021-07-14 15:13:27 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions
|
|
|
|
# ------------------------------------------------------------------------------
|
2021-06-14 18:33:57 +00:00
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
# clique/snapshot_test.go(62): func (ap *testerAccountPool) address(account [..]
|
|
|
|
proc address*(ap: TesterPool; account: string): EthAddress =
|
|
|
|
## retrieves the Ethereum address of a tester account by label, creating
|
|
|
|
## a new account if no previous one exists yet.
|
|
|
|
if account != "":
|
|
|
|
result = ap.privateKey(account).toPublicKey.toCanonicalAddress
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public: set up & manage voter database
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2021-06-16 15:12:51 +00:00
|
|
|
proc resetVoterChain*(ap: TesterPool; signers: openArray[string];
|
2021-07-30 14:06:51 +00:00
|
|
|
epoch = 0; runBack = true): TesterPool {.discardable.} =
|
2021-06-04 17:20:37 +00:00
|
|
|
## Reset the batch list for voter headers and update genesis block
|
2021-06-16 15:12:51 +00:00
|
|
|
result = ap
|
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
ap.batch = @[newSeq[BlockHeader]()]
|
|
|
|
|
|
|
|
# clique/snapshot_test.go(384): signers := make([]common.Address, [..]
|
|
|
|
let signers = signers.mapIt(ap.address(it)).sorted(EthAscending)
|
|
|
|
|
|
|
|
var extraData = 0.byte.repeat(EXTRA_VANITY)
|
|
|
|
|
|
|
|
# clique/snapshot_test.go(399): for j, signer := range signers {
|
|
|
|
for signer in signers:
|
|
|
|
extraData.add signer.toSeq
|
|
|
|
|
|
|
|
# clique/snapshot_test.go(397):
|
|
|
|
extraData.add 0.byte.repeat(EXTRA_SEAL)
|
|
|
|
|
2021-06-14 18:33:57 +00:00
|
|
|
# store modified genesis block and epoch
|
2022-07-21 18:16:28 +00:00
|
|
|
ap.resetChainDb(extraData, ap.noisy)
|
2021-07-14 15:13:27 +00:00
|
|
|
ap.clique.cfg.epoch = epoch
|
2021-07-30 14:06:51 +00:00
|
|
|
ap.clique.applySnapsMinBacklog = runBack
|
2021-06-04 17:20:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
# clique/snapshot_test.go(415): blocks, _ := core.GenerateChain(&config, [..]
|
2021-06-16 15:12:51 +00:00
|
|
|
proc appendVoter*(ap: TesterPool;
|
|
|
|
voter: TesterVote): TesterPool {.discardable.} =
|
2021-06-04 17:20:37 +00:00
|
|
|
## Append a voter header to the block chain batch list
|
2021-06-16 15:12:51 +00:00
|
|
|
result = ap
|
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
doAssert 0 < ap.batch.len # see initTesterPool() and resetVoterChain()
|
|
|
|
let parent = if ap.batch[^1].len == 0:
|
2021-06-16 15:12:51 +00:00
|
|
|
ap.getBlockHeader(0.u256)
|
2021-06-04 17:20:37 +00:00
|
|
|
else:
|
|
|
|
ap.batch[^1][^1]
|
|
|
|
|
2021-08-03 07:15:32 +00:00
|
|
|
let header = ap.chain.clique.cliqueGenvote(
|
|
|
|
voter = ap.address(voter.voted),
|
|
|
|
seal = ap.privateKey(voter.signer),
|
|
|
|
parent = parent,
|
|
|
|
elapsed = initDuration(seconds = 100),
|
|
|
|
voteInOk = voter.auth,
|
|
|
|
outOfTurn = voter.noTurn,
|
|
|
|
checkPoint = voter.checkpoint.mapIt(ap.address(it)).sorted(EthAscending))
|
2021-06-14 18:33:57 +00:00
|
|
|
|
|
|
|
if 0 < voter.checkpoint.len:
|
2021-07-14 15:13:27 +00:00
|
|
|
doAssert (header.blockNumber mod ap.clique.cfg.epoch) == 0
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2021-08-03 07:15:32 +00:00
|
|
|
# Register for debugging
|
|
|
|
let
|
|
|
|
extraLen = header.extraData.len
|
|
|
|
extraSeal = header.extraData[extraLen - EXTRA_SEAL ..< extraLen]
|
|
|
|
ap.xSeals[toArray(XSealKey.len,extraSeal)] = XSealValue(
|
|
|
|
blockNumber: header.blockNumber.truncate(uint64),
|
|
|
|
account: voter.signer)
|
2021-06-04 17:20:37 +00:00
|
|
|
|
|
|
|
if voter.newbatch:
|
|
|
|
ap.batch.add @[]
|
|
|
|
ap.batch[^1].add header
|
|
|
|
|
|
|
|
|
2021-06-16 15:12:51 +00:00
|
|
|
proc appendVoter*(ap: TesterPool;
|
|
|
|
voters: openArray[TesterVote]): TesterPool {.discardable.} =
|
|
|
|
## Append a list of voter headers to the block chain batch list
|
|
|
|
result = ap
|
|
|
|
for voter in voters:
|
|
|
|
ap.appendVoter(voter)
|
|
|
|
|
|
|
|
|
2021-07-21 13:31:52 +00:00
|
|
|
proc commitVoterChain*(ap: TesterPool; postProcessOk = false;
|
|
|
|
stopFaultyHeader = false): TesterPool {.discardable.} =
|
|
|
|
## Write the headers from the voter header batch list to the block chain DB.
|
|
|
|
##
|
|
|
|
## If `postProcessOk` is set, an additional verification step is added at
|
|
|
|
## the end of each transaction.
|
|
|
|
##
|
2021-07-27 11:28:05 +00:00
|
|
|
## if `stopFaultyHeader` is set, the function stops immediately on error.
|
|
|
|
## Otherwise the offending block is removed, the rest of the batch is
|
2021-07-21 13:31:52 +00:00
|
|
|
## adjusted and applied again repeatedly.
|
2021-06-16 15:12:51 +00:00
|
|
|
result = ap
|
2021-07-21 13:31:52 +00:00
|
|
|
|
|
|
|
var reChainOk = false
|
|
|
|
for n in 0 ..< ap.batch.len:
|
|
|
|
block forLoop:
|
|
|
|
|
|
|
|
var headers = ap.batch[n]
|
|
|
|
while true:
|
|
|
|
if headers.len == 0:
|
|
|
|
break forLoop # continue with for loop
|
|
|
|
|
|
|
|
ap.say &"*** transaction ({n}) list: [",
|
|
|
|
headers.mapIt(&"#{it.blockNumber}").join(", "), "]"
|
|
|
|
|
|
|
|
# Realign rest of transaction to existing block chain
|
|
|
|
if reChainOk:
|
2022-12-05 11:25:44 +00:00
|
|
|
var parent = ap.chain.clique.db.getCanonicalHead
|
2021-07-21 13:31:52 +00:00
|
|
|
for i in 0 ..< headers.len:
|
2021-07-30 14:06:51 +00:00
|
|
|
headers[i].parentHash = parent.blockHash
|
2021-07-21 13:31:52 +00:00
|
|
|
headers[i].blockNumber = parent.blockNumber + 1
|
|
|
|
parent = headers[i]
|
|
|
|
|
|
|
|
# Perform transaction into the block chain
|
|
|
|
let bodies = BlockBody().repeat(headers.len)
|
|
|
|
if ap.chain.persistBlocks(headers,bodies) == ValidationResult.OK:
|
|
|
|
break
|
|
|
|
if stopFaultyHeader:
|
|
|
|
return
|
|
|
|
|
|
|
|
# If the offending block is the last one of the last transaction,
|
|
|
|
# then there is nothing to do.
|
2021-07-30 14:06:51 +00:00
|
|
|
let culprit = headers.filterIt(ap.failed[0] == it.blockHash)
|
2021-07-21 13:31:52 +00:00
|
|
|
doAssert culprit.len == 1
|
|
|
|
let number = culprit[0].blockNumber
|
|
|
|
if n + 1 == ap.batch.len and number == headers[^1].blockNumber:
|
|
|
|
return
|
|
|
|
|
|
|
|
# Remove offending block and try again for the rest
|
|
|
|
ap.say "*** persistBlocks failed, omitting block #", culprit
|
|
|
|
let prevLen = headers.len
|
|
|
|
headers = headers.filterIt(number != it.blockNumber)
|
|
|
|
doAssert headers.len < prevLen
|
|
|
|
reChainOk = true
|
|
|
|
|
2022-07-21 18:16:28 +00:00
|
|
|
if ap.noisy:
|
2021-07-21 13:31:52 +00:00
|
|
|
ap.say "*** snapshot argument: #", headers[^1].blockNumber
|
|
|
|
ap.sayHeaderChain(8)
|
|
|
|
when false: # all addresses are typically pp-mappable
|
|
|
|
ap.say " address map: ", toSeq(ap.names.pairs)
|
2021-07-14 15:13:27 +00:00
|
|
|
.mapIt(&"@{it[1]}:{it[0]}")
|
|
|
|
.sorted
|
|
|
|
.join("\n" & ' '.repeat(23))
|
2021-07-21 13:31:52 +00:00
|
|
|
if postProcessOk:
|
|
|
|
discard ap.clique.cliqueSnapshot(headers[^1])
|
2021-06-04 17:20:37 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|