Fix nft_mint_evaluator to save token_uri

This commit is contained in:
Srdjan Obucina 2020-07-23 13:22:54 +02:00
parent 957b331d4e
commit a62ffd73ea

View file

@ -80,6 +80,7 @@ object_id_type nft_mint_evaluator::do_apply( const nft_mint_operation& op )
obj.owner = op.owner;
obj.approved = op.approved;
obj.approved_operators = op.approved_operators;
obj.token_uri = op.token_uri;
});
return new_nft_object.id;
} FC_CAPTURE_AND_RETHROW( (op) ) }