Rename the outdated singleton that atari uses

This commit is contained in:
Matt Hauff 2022-06-13 11:26:33 -07:00
parent 1811b46a31
commit b873f7115a
No known key found for this signature in database
GPG Key ID: 3CBA6CFC81A00E46
5 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ from chia.wallet.puzzles.load_clvm import load_clvm
# from chia.wallet.util.merkle_tree import MerkleTree, TreeType
SINGLETON_TOP_LAYER_MOD = load_clvm("singleton_top_layer_v1_1.clvm")
SINGLETON_TOP_LAYER_MOD = load_clvm("singleton_top_layer_atari_only.clvm")
# TODO: need new data layer specific clvm
SINGLETON_LAUNCHER = load_clvm("singleton_launcher.clvm")
DB_HOST_MOD = load_clvm("database_layer.clvm")

View File

@ -46,7 +46,7 @@ wallet_program_files = set(
"chia/wallet/puzzles/genesis_by_coin_id.clvm",
"chia/wallet/puzzles/database_offer.clvm",
"chia/wallet/puzzles/database_layer.clvm",
"chia/wallet/puzzles/singleton_top_layer_v1_1.clvm",
"chia/wallet/puzzles/singleton_top_layer_atari_only.clvm",
]
)