From 612b82d906ee4af506321b13a910fc48d308c04a Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 28 Jan 2021 12:26:42 +0000 Subject: [PATCH] tests: make transferExpectFail accept bigint --- --- a/tests/src/util/helpers.ts +++ b/tests/src/util/helpers.ts @@ -590,7 +590,7 @@ tokenId: number, sender: IKeyringPair, recipient: IKeyringPair, - value: number = 1, + value: number | bigint = 1, type: string = 'NFT') { await usingApi(async (api: ApiPromise) => { const transferTx = await api.tx.nft.transfer(recipient.address, collectionId, tokenId, value); -- gitstuff