difftreelog
Docker file + minor fix
in: master
2 files changed
Dockerfilediffbeforeafterbothno changes
pallets/nft/src/lib.rsdiffbeforeafterboth115 // Generate next collection ID115 // Generate next collection ID116 let next_id = NextCollectionID::get()116 let next_id = NextCollectionID::get()117 .checked_add(1)117 .checked_add(1)118 .expect("collection id error");;118 .expect("collection id error");119119120 NextCollectionID::put(next_id);120 NextCollectionID::put(next_id);121121