Commit e1ce1a7a authored by protolambda's avatar protolambda

minigeth: remove more old minigeth files

parent 7870c023
[submodule "minigeth"]
branch = l2minigeth
path = minigeth
url = git@github.com:ethereum-optimism/minigeth.git
[submodule "unicorn"]
path = unicorn
url = git@github.com:geohot/unicorn.git
common/hexutil/hexutil.go
common/hexutil/json.go
common/math/big.go
common/math/integer.go
common/big.go
common/bytes.go
common/size.go
common/types.go
#consensus/ethash/fake_ethash.go
consensus/misc/eip1559.go
consensus/misc/gaslimit.go
consensus/consensus.go
#core/state/snapshot/snapshot.go
core/state/access_list.go
#core/state/database.go
core/state/journal.go
#core/state/state_object.go -- has oracle stuff in it
#core/state/statedb.go -- uses rawdb
core/types/access_list_tx.go
core/types/block.go
core/types/bloom9.go
core/types/dynamic_fee_tx.go
core/types/hashing.go
core/types/legacy_tx.go
core/types/log.go
core/types/receipt.go
core/types/transaction_signing.go
core/types/transaction.go
core/vm/analysis.go
core/vm/common.go
core/vm/contract.go
core/vm/contracts.go
core/vm/eips.go
core/vm/errors.go
core/vm/evm.go
core/vm/gas_table.go
core/vm/gas.go
core/vm/instructions.go
core/vm/interface.go
core/vm/interpreter.go
core/vm/jump_table.go
core/vm/logger.go
core/vm/memory_table.go
core/vm/memory.go
core/vm/opcodes.go
core/vm/operations_acl.go
core/vm/stack_table.go
core/vm/stack.go
core/error.go
core/evm.go
#core/fake_blockchain.go
core/gaspool.go
#core/state_processor.go -- disable DAO, print dots
core/state_transition.go
crypto/blake2b/blake2b_generic.go
#crypto/blake2b/blake2b_ref.go -- always build
crypto/blake2b/blake2b.go
crypto/bls12381/arithmetic_fallback.go
crypto/bls12381/bls12_381.go
crypto/bls12381/field_element.go
crypto/bls12381/fp.go
crypto/bls12381/fp2.go
crypto/bls12381/fp6.go
crypto/bls12381/fp12.go
crypto/bls12381/g1.go
crypto/bls12381/g2.go
crypto/bls12381/gt.go
crypto/bls12381/isogeny.go
crypto/bls12381/pairing.go
crypto/bls12381/swu.go
crypto/bls12381/utils.go
crypto/bn256/google/*
#crypto/bn256/bn256_slow.go -- always build
crypto/bn256/LICENSE
# crypto/btcec -- copied in
crypto/crypto.go
#crypto/signature_nocgo.go -- always build with local btcec
ethdb/batch.go
ethdb/database.go
ethdb/iterator.go
#log/logger.go -- stubbed, this needed?
#metrics/metrics.go -- all stubbed
params/config.go
params/protocol_params.go
rlp/decode.go
rlp/encode.go
rlp/raw.go
rlp/typecache.go
#rlp/unsafe.go -- always build
rpc/errors.go
rpc/json.go
rpc/types.go
trie/committer.go
#trie/database.go -- uses rawdb and fastcache
trie/encoding.go
trie/errors.go
trie/hasher.go
trie/iterator.go
trie/node.go
#trie/secure_trie.go -- couple random comment outs, fix?
#trie/stacktrie.go -- persist the database
#trie/trie.go -- hacks for deletion
#!/usr/bin/env bash
set -e
(cd minigeth/ && go build)
mkdir -p /tmp/cannon
# 0 tx: 13284491
# low tx: 13284469
# delete issue: 13284053
if [ $# -eq 0 ]; then
BLOCK=13284469
else
BLOCK=$1
fi
minigeth/go-ethereum $BLOCK
#!/usr/bin/env bash
FILES=$(grep -v "#" files_minigeth)
MINIGETH=$PWD/minigeth
git clone https://github.com/ethereum/go-ethereum.git
cd go-ethereum
git checkout 26675454bf93bf904be7a43cce6b3f550115ff90
rsync -Rv $FILES $MINIGETH
#!/usr/bin/env bash
set -e
(cd minigeth/ && go build)
mkdir -p /tmp/cannon
# london starts at 12965000
BLOCK=$1
while [ true ]
do
minigeth/go-ethereum $BLOCK
((BLOCK=BLOCK+1))
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment