Files
nanoreth/src/node/spot_meta/patch.rs
2025-09-14 23:24:00 -04:00

9 lines
316 B
Rust

use crate::node::spot_meta::SpotId;
use alloy_primitives::{address, Address};
use std::collections::BTreeMap;
/// Testnet-specific fix for #67
pub(super) fn patch_testnet_spot_meta(map: &mut BTreeMap<Address, SpotId>) {
map.insert(address!("0xd9cbec81df392a88aeff575e962d149d57f4d6bc"), SpotId { index: 0 });
}