Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
86667 committed Dec 2, 2019
1 parent d1341d1 commit 2d2f952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/create_request.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ fi

currentblockheight=`ocl getblockcount` # may have updated by now
# Request start height = confirmation time bufffer + current height + auction duration
let start=$(( 1+$currentblockheight+$4 ))
start=$(( 1+$currentblockheight+$4 ))
# Request end height = request start height + request duration
let end=start+$5
end=$(( start+$5 ))

# Address permission tokens will be locked in
pub=`ocl validateaddress $(ocl getnewaddress | jq -r '.') | jq -r ".pubkey"`
Expand Down

0 comments on commit 2d2f952

Please sign in to comment.