Skip to content

Commit b0c8bf3

Browse files
committed
Add blank for MultiSig wrapper tests
1 parent 68fb13b commit b0c8bf3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

sdk/tests/multisig_tests.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import time
2+
import unittest
3+
4+
from web3 import Web3
5+
6+
from sdk.kit import Kit
7+
from sdk.tests import test_data
8+
9+
10+
class TestMultiSigWrapper(unittest.TestCase):
11+
12+
@classmethod
13+
def setUpClass(self):
14+
self.kit = Kit('https://alfajores-forno.celo-testnet.org')
15+
self.multi_sig_wrapper = self.kit.base_wrapper.create_and_get_contract_by_name(
16+
'MultiSig')
17+
self.kit.wallet_add_new_key = test_data.pk1

0 commit comments

Comments
 (0)