File tree 1 file changed +0
-16
lines changed 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ void main() {
22
22
_testMultiEdAccount4 ();
23
23
_testMultiEdAccount ();
24
24
_testMultiEdAccount2 ();
25
- _testMultiEdAccount3 ();
26
25
_testSignleKeyEd25519 ();
27
26
_testSignleKeySecp256k1 ();
28
27
}
@@ -80,21 +79,6 @@ void _testMultiEdAccount4() {
80
79
});
81
80
}
82
81
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
-
98
82
void _testMultiEdAccount2 () {
99
83
test ("Multi Ed25519 account 3" , () {
100
84
final privateKey1 = Ed25519PrivateKey .fromBytes (List <int >.filled (32 , 12 ));
You can’t perform that action at this time.
0 commit comments