MCPcopy Create free account
hub / github.com/bither/bither-desktop-java / add

Method add

src/main/java/net/bither/db/TxProvider.java:319–327  ·  view source on GitHub ↗
(final Tx txItem)

Source from the content-addressed store, hash-verified

317 }
318
319 public void add(final Tx txItem) {
320 try {
321 this.mDb.getConn().setAutoCommit(false);
322 addTxToDb(this.mDb.getConn(), txItem);
323 this.mDb.getConn().commit();
324 } catch (SQLException e) {
325 e.printStackTrace();
326 }
327 }
328
329 public void addTxs(List<Tx> txItems) {
330 try {

Callers 15

initControllerMethod · 0.80
runMethod · 0.80
processQrCodeContentMethod · 0.80
addAddressMethod · 0.80
getMarketsMethod · 0.80
generateAddressMethod · 0.80
getCLDevicesMethod · 0.80
appendMethod · 0.80
runMethod · 0.80
createHeadersMethod · 0.80

Calls 2

addTxToDbMethod · 0.95
getConnMethod · 0.80

Tested by

no test coverage detected