File tree Expand file tree Collapse file tree
main/java/org/arkecosystem/crypto/signature/bls
test/java/org/arkecosystem/crypto/transactions/deserializers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ public JNIEnv() {
1616 sources = new LinkedList <String >();
1717 String OS = System .getProperty ("os.name" ).toLowerCase ();
1818 String ARCH = System .getProperty (("os.arch" )).toLowerCase ();
19- System .out .println (OS + " | " + ARCH );
2019 if (OS .contains ("mac" ) && (ARCH .contains ("x86_64" ) || ARCH .contains ("aarch64" ))) {
2120 sources .add ("libmcljava.dylib" );
2221 } else if (OS .contains ("linux" ) && ARCH .contains ("amd64" )) {
Original file line number Diff line number Diff line change @@ -53,10 +53,6 @@ void passphraseVendorField() {
5353 assertEquals ((Long .valueOf ((String ) data .get ("fee" ))), actual .fee );
5454 assertEquals (data .get ("signature" ).toString (), actual .signature );
5555 assertEquals (data .get ("id" ).toString (), actual .id );
56-
57- System .out .println ("AAAA" );
58- System .out .println (data .get ("vendorField" ).toString ());
59-
6056 assertEquals (data .get ("recipientId" ).toString (), actual .recipientId );
6157 assertEquals ((Long .valueOf ((String ) data .get ("amount" ))), actual .amount );
6258 assertEquals (((Double ) data .get ("expiration" )).intValue (), actual .expiration );
You can’t perform that action at this time.
0 commit comments