diff --git a/src/Model/Transactions/Transaction.php b/src/Model/Transactions/Transaction.php index fcfb6c6a8..23f381131 100644 --- a/src/Model/Transactions/Transaction.php +++ b/src/Model/Transactions/Transaction.php @@ -43,7 +43,7 @@ class Transaction extends TransactionBase { $this->mProtoTransaction = new \Model\Messages\Gradido\Transaction(); try { $this->mProtoTransaction->mergeFromString($transactionBin); - var_dump($this->mProtoTransaction); + //var_dump($this->mProtoTransaction); // cannot catch Exception with cakePHP, I don't know why } catch(\Google\Protobuf\Internal\GPBDecodeException $e) { //var_dump($e); @@ -53,9 +53,9 @@ class Transaction extends TransactionBase { //echo 'serialize to json:
'; //echo $this->mProtoTransaction->serializeToJsonString(); - echo "body bytes:
"; - var_dump($this->mProtoTransaction->getBodyBytes()); - echo "
end body bytes
"; + //echo "body bytes:
"; + //var_dump($this->mProtoTransaction->getBodyBytes()); + //echo "
end body bytes
"; $this->mTransactionBody = new TransactionBody($this->mProtoTransaction->getBodyBytes()); } }