From 85e850b28cd1424f75be59ac9962e73fa2c086c7 Mon Sep 17 00:00:00 2001 From: Dmitrii Pichulin Date: Thu, 15 Aug 2024 17:11:11 +0300 Subject: [PATCH] fix scheme update --- src/Model/DataEntry.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/DataEntry.php b/src/Model/DataEntry.php index ea0c55f..0bb5b99 100644 --- a/src/Model/DataEntry.php +++ b/src/Model/DataEntry.php @@ -122,9 +122,9 @@ function booleanValue(): bool return Value::as( $this->value() )->asBoolean(); } - function toProtobuf(): \Waves\Protobuf\DataTransactionData\DataEntry + function toProtobuf(): \Waves\Protobuf\DataEntry { - $pb_DataEntry = new \Waves\Protobuf\DataTransactionData\DataEntry; + $pb_DataEntry = new \Waves\Protobuf\DataEntry; $pb_DataEntry->setKey( $this->key() ); switch( $this->type() ) {