From 00be3e6143ba323740e8f881e0106472c756ca6a Mon Sep 17 00:00:00 2001 From: msinkec Date: Fri, 9 Feb 2024 16:04:49 +0100 Subject: [PATCH] Fix recallable for testnet. --- tests/recallable.test.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/recallable.test.ts b/tests/recallable.test.ts index d069981a..d187b2cf 100644 --- a/tests/recallable.test.ts +++ b/tests/recallable.test.ts @@ -132,6 +132,9 @@ describe('Test SmartContract `Recallable`', () => { it('should pass 10000/0', async () => { // alice transfers 10000 to bob, keeps nothing left + recallable = new Recallable(PubKey(alicePublicKey.toByteString())) + await recallable.connect(getDefaultSigner(alicePrivateKey)) + await recallable.deploy(100) const bobNextInstance = recallable.next() bobNextInstance.userPubKey = PubKey(bobPublicKey.toByteString())