File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
wasm-wrappers/js-bindings Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ export async function run_test() {
319
319
assert_eq_arrays ( inputs , expected_inputs ) ;
320
320
321
321
try {
322
- get_token_id ( [ ] , Network . Testnet ) ;
322
+ get_token_id ( [ ] , BigInt ( 1 ) , Network . Testnet ) ;
323
323
throw "Token Id generated without a UTXO input somehow!" ;
324
324
} catch ( e ) {
325
325
if ( ! e . includes ( "No UTXO input found" ) ) {
@@ -331,7 +331,7 @@ export async function run_test() {
331
331
{
332
332
const expected_token_id =
333
333
"tmltk13cncdptay55g9ajhrkaw0fp46r0tspq9kptul8vj2q7yvd69n4zsl24gea" ;
334
- const token_id = get_token_id ( inputs , Network . Testnet ) ;
334
+ const token_id = get_token_id ( inputs , BigInt ( 1 ) , Network . Testnet ) ;
335
335
console . log ( token_id ) ;
336
336
337
337
if ( token_id != expected_token_id ) {
You can’t perform that action at this time.
0 commit comments