Skip to content

Commit

Permalink
fix scheme update
Browse files Browse the repository at this point in the history
  • Loading branch information
deemru committed Aug 15, 2024
1 parent 5301be7 commit 85e850b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Model/DataEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -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() )
{
Expand Down

0 comments on commit 85e850b

Please sign in to comment.