fix insertion of data into KeySignature table

This commit is contained in:
Vincent Breitmoser
2018-07-14 12:03:44 +02:00
parent 9df9682c77
commit a69eaab0ea
3 changed files with 4 additions and 3 deletions

View File

@@ -57,6 +57,8 @@ public class DatabaseBatchInteractor {
} else if (op.keySignature != null) {
op.keySignature.bindTo(insertKeySignerStatement);
insertKeySignerStatement.executeInsert();
} else {
throw new IllegalStateException();
}
}
}