Skip to content

Commit

Permalink
fix(core-database-postgres): typo, missing ||
Browse files Browse the repository at this point in the history
  • Loading branch information
vasild committed Jun 27, 2019
1 parent 567ea1e commit 483be88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ BEGIN
IF previous_block_height IS NULL THEN
fail_reason := 'a block with id "' || previous_block_arg || '" does not exist';
ELSE
fail_reason := 'a block with id "' || previous_block_arg || '" exists but at an unexpected height '
fail_reason := 'a block with id "' || previous_block_arg || '" exists but at an unexpected height ' ||
previous_block_height || ' instead of ' || height_arg - 1;
END IF;

Expand Down

0 comments on commit 483be88

Please sign in to comment.