mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
9 lines
316 B
Rust
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 });
|
|
}
|