File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ public static function extendBlakechain(
150150 self ::normalize ($ db ->getDriver (), $ fields );
151151
152152 // Insert new row into the database:
153- $ db ->insert (self ::getTableName ('chain ' ), $ fields );
153+ $ db ->insert (self ::getTableName ('chain ' , true ), $ fields );
154154 if (!$ db ->commit ()) {
155155 $ db ->rollBack ();
156156 throw new ChainAppendException ('Could not commit new hash to database ' );
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ protected function createClient(array $post): string
182182
183183 $ db ->beginTransaction ();
184184 $ db ->insert (
185- Chronicle::getTableName ('clients ' ),
185+ Chronicle::getTableName ('clients ' , true ),
186186 [
187187 'publicid ' => $ clientId ,
188188 'publickey ' => $ post ['publickey ' ],
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ public function __invoke(
112112 }
113113
114114 $ db ->delete (
115- Chronicle::getTableName ('clients ' ),
115+ Chronicle::getTableName ('clients ' , true ),
116116 [
117117 'publicid ' => $ post ['clientid ' ],
118118 'publickey ' => $ post ['publickey ' ],
You can’t perform that action at this time.
0 commit comments