|
From: Pelle B. <pe...@us...> - 2004-03-21 00:58:48
|
Update of /cvsroot/neuclear/neuclear-pay/src/test/org/neuclear/asset/controllers/currency In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2965/src/test/org/neuclear/asset/controllers/currency Modified Files: CurrencyTests.java Log Message: The problem with Enveloped signatures has now been fixed. It was a problem in the way transforms work. I have bandaided it, but in the future if better support for transforms need to be made, we need to rethink it a bit. Perhaps using the new crypto channel's in neuclear-commons. Index: CurrencyTests.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-pay/src/test/org/neuclear/asset/controllers/currency/CurrencyTests.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** CurrencyTests.java 5 Jan 2004 23:47:10 -0000 1.5 --- CurrencyTests.java 21 Mar 2004 00:48:45 -0000 1.6 *************** *** 2,18 **** import junit.framework.TestCase; - import org.neuclear.asset.*; - import org.neuclear.asset.controllers.currency.CurrencyController; - import org.neuclear.exchange.orders.ExchangeOrderReceipt; - import org.neuclear.asset.orders.TransferReceipt; import org.neuclear.commons.configuration.ConfigurationException; ! import org.neuclear.ledger.*; import java.io.IOException; - import java.math.BigInteger; import java.sql.SQLException; - import java.util.Calendar; - import java.util.Date; - import java.util.Random; /** --- 2,11 ---- import junit.framework.TestCase; import org.neuclear.commons.configuration.ConfigurationException; ! import org.neuclear.ledger.LedgerCreationException; ! import org.neuclear.ledger.LowlevelLedgerException; import java.io.IOException; import java.sql.SQLException; /** *************** *** 22,26 **** */ public final class CurrencyTests extends TestCase { ! public CurrencyTests(final String s) throws SQLException, IOException, LowlevelLedgerException, BookExistsException, LedgerCreationException, ConfigurationException { super(s); // proc = CurrencyController.getInstance(); --- 15,19 ---- */ public final class CurrencyTests extends TestCase { ! public CurrencyTests(final String s) throws SQLException, IOException, LowlevelLedgerException, LedgerCreationException, ConfigurationException { super(s); // proc = CurrencyController.getInstance(); |