From 0e33d6cbbab55ad7b0a4c09955f65c3c83d9b381 Mon Sep 17 00:00:00 2001 From: openhands Date: Sat, 14 Mar 2026 20:58:34 +0000 Subject: [PATCH] fix: DeployLocal.sol feeDest 0xf6a3... may have code on Base Sepolia fork (#760) --- STATE.md | 2 +- scripts/harb-evaluator/bootstrap-light.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/STATE.md b/STATE.md index d005df5..b5af03b 100644 --- a/STATE.md +++ b/STATE.md @@ -30,4 +30,4 @@ - [2026-03-14] No mainnet VWAP bootstrap runbook (#728) - [2026-03-14] fitness.sh individual-scoring path still silences errors (#766) - [2026-03-14] batch-eval.sh MANIFEST_DIR (mktemp -d) has no cleanup trap (#763) -- [2026-03-14] fix: bootstrap.sh anvil_setCode guard now targets correct feeDest 0xf6a3... (#760) +- [2026-03-14] bootstrap.sh anvil_setCode guard now targets correct feeDest 0xf6a3... (#760) diff --git a/scripts/harb-evaluator/bootstrap-light.sh b/scripts/harb-evaluator/bootstrap-light.sh index 425ef24..4c6fd7f 100755 --- a/scripts/harb-evaluator/bootstrap-light.sh +++ b/scripts/harb-evaluator/bootstrap-light.sh @@ -28,7 +28,7 @@ log "Anvil running" DEPLOYER=$($CAST wallet address --mnemonic "test test test test test test test test test test test junk" 2>/dev/null) log "Clearing code from deployer ($DEPLOYER) + feeDest" $CAST rpc --rpc-url "$RPC_URL" anvil_setCode "$DEPLOYER" "0x" 2>/dev/null || true -$CAST rpc --rpc-url "$RPC_URL" anvil_setCode "0x8A9145E1Ea4C4d7FB08cF1011c8ac1F0e10F9383" "0x" 2>/dev/null || true +$CAST rpc --rpc-url "$RPC_URL" anvil_setCode "0xf6a3eef9088A255c32b6aD2025f83E57291D9011" "0x" 2>/dev/null || true # 3. Deploy contracts — capture output for addresses log "Deploying contracts..."