File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed
Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ void main() {
2222 _testMultiEdAccount4 ();
2323 _testMultiEdAccount ();
2424 _testMultiEdAccount2 ();
25- _testMultiEdAccount3 ();
2625 _testSignleKeyEd25519 ();
2726 _testSignleKeySecp256k1 ();
2827}
@@ -80,21 +79,6 @@ void _testMultiEdAccount4() {
8079 });
8180}
8281
83- void _testMultiEdAccount3 () {
84- test ("Multi Ed25519 account" , () {
85- final privateKey1 = Ed25519PrivateKey .fromBytes (List <int >.filled (32 , 12 ));
86- final privateKey2 = Ed25519PrivateKey .fromBytes (List <int >.filled (32 , 12 ));
87- final privateKey3 = Ed25519PrivateKey .fromBytes (List <int >.filled (32 , 12 ));
88- final account = AptosAddrEncoder ().encodeMultiEd25519Key (publicKeys: [
89- privateKey1.publicKey,
90- privateKey2.publicKey,
91- privateKey3.publicKey
92- ], threshold: 2 );
93- expect (account,
94- "0x46b83ee243d37f8754a0bd90505b58bb19a098840e90ec11934192f04267fc41" );
95- });
96- }
97-
9882void _testMultiEdAccount2 () {
9983 test ("Multi Ed25519 account 3" , () {
10084 final privateKey1 = Ed25519PrivateKey .fromBytes (List <int >.filled (32 , 12 ));
You can’t perform that action at this time.
0 commit comments