From b1033fdc2f88296ba0754854328c83c35b929935 Mon Sep 17 00:00:00 2001 From: Rigidity Date: Tue, 7 May 2024 23:47:20 -0400 Subject: [PATCH] Don't support NFTs yet for puzzle parser --- src/puzzle_parser.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/puzzle_parser.rs b/src/puzzle_parser.rs index 358f4844..f115dbc1 100644 --- a/src/puzzle_parser.rs +++ b/src/puzzle_parser.rs @@ -17,8 +17,7 @@ use clvmr::{ use thiserror::Error; use crate::{ - did_inner_puzzle_hash, singleton_puzzle_hash, CatInfo, CreateCoin, CreateCoinWithMemos, - DidInfo, NftInfo, + did_inner_puzzle_hash, singleton_puzzle_hash, CatInfo, CreateCoin, CreateCoinWithMemos, DidInfo, }; #[derive(Debug, Error)] @@ -48,7 +47,6 @@ pub enum PuzzleError { pub enum Puzzle { Cat(CatInfo), Did(DidInfo), - Nft(NftInfo), } impl Puzzle {