Skip to content

Commit 5fc4f83

Browse files
committed
chores
1 parent 6f87d77 commit 5fc4f83

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: consensus-client-it/src/test/scala/units/client/HttpChainContractClient.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class HttpChainContractClient(api: NodeHttpApi, override val contract: Address)
6363
}
6464
}
6565

66-
// This is different from blockchain.height, because we wait this from a contract block
66+
// This is different from blockchain.height, because we wait this from a contract block
6767
def waitForEpoch(atLeast: Int, chainId: Long = DefaultMainChainId): Unit = {
6868
log.debug(s"waitForEpoch($atLeast)")
6969
eventually {

Diff for: contracts/waves/src/main.ride

+1-1
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ func commonWithdrawChecks(blockHashHex: String, merkleProof: List[ByteVector], t
602602
let finalizedBlockHeight = blockMeta(getStringValue(finalizedBlockKey))._1
603603
let mainChainLastBlockHeight = blockMeta(mainChainLastBlock)._1
604604

605-
strict afterFinalized = withdrawBlockHeight <= finalizedBlockHeight || throw("EL block #" + withdrawBlockHeight.toString() + " is not finalized. The current finalized is #" + finalizedBlockHeight.toString())
605+
strict finalized = withdrawBlockHeight <= finalizedBlockHeight || throw("EL block #" + withdrawBlockHeight.toString() + " is not finalized. The current finalized is #" + finalizedBlockHeight.toString())
606606
strict rightProofsSize = merkleProof.size() == WITHDRAW_PROOFS_SIZE || throw("Expected " + WITHDRAW_PROOFS_SIZE.toString() + " proofs, got " + merkleProof.size().toString())
607607
strict nonNegativeIndex = transferIndexInBlock >= 0 || throw("Transfer index in block should be nonnegative, got " + transferIndexInBlock.toString())
608608
strict positiveAmount = amount > 0 || throw("Amount should be positive, got " + amount.toString())

Diff for: docker/waves-testnet.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ units {
2626
chains = [
2727
{
2828
chain-contract = 3Msx4Aq69zWUKy4d1wyKnQ4ofzEDAfv5Ngf
29-
execution-client-address = "http://execution-client:8551"
29+
execution-client-address = "http://op-geth:8551"
3030
jwt-secret-file = /etc/secrets/jwtsecret
3131

3232
network {

0 commit comments

Comments
 (0)