Skip to content

Commit 6258bdd

Browse files
committed
Update aptos_test.dart
1 parent 2b77322 commit 6258bdd

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

test/address/aptos/aptos_test.dart

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff 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-
9882
void _testMultiEdAccount2() {
9983
test("Multi Ed25519 account 3", () {
10084
final privateKey1 = Ed25519PrivateKey.fromBytes(List<int>.filled(32, 12));

0 commit comments

Comments
 (0)