Update in re cerc-io/laconic-registry-cli#78
Some checks failed
Lint Checks / Run linter (pull_request) Failing after 42s
Deploy Test / Run deploy test suite (pull_request) Successful in 5m16s
Webapp Test / Run webapp test suite (pull_request) Successful in 4m58s
K8s Deployment Control Test / Run deployment control suite on kind/k8s (pull_request) Successful in 7m5s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 8m11s
Smoke Test / Run basic test suite (pull_request) Successful in 4m36s

This commit is contained in:
Thomas E Lackey 2024-08-19 19:35:44 -05:00
parent b449d88b6c
commit 2f1cde16b7

View File

@ -104,17 +104,37 @@ def confirm_payment(laconic, record, payment_address, min_amount, logger):
logger.log(f"{record.id}: cannot locate payment tx") logger.log(f"{record.id}: cannot locate payment tx")
return False return False
if tx.code != 0:
logger.log(
f"{record.id}: payment tx {tx.hash} was not successful - code: {tx.code}, log: {tx.log}"
)
return False
owner = laconic.get_owner(record) owner = laconic.get_owner(record)
if tx.from_address != owner: if tx.sender != owner:
logger.log(f"{record.id}: {tx.from_address} != {owner}") logger.log(
f"{record.id}: payment sender {tx.sender} in tx {tx.hash} does not match deployment request {owner}"
)
return False return False
if tx.to_address != payment_address: if tx.recipient != payment_address:
logger.log(f"{record.id}: {tx.to_address} != {payment_address}") logger.log(
f"{record.id}: payment recipient {tx.recipient} in tx {tx.hash} does not match {payment_address}"
)
return False return False
if tx.amount < min_amount: pay_denom = "".join([i for i in tx.amount if not i.isdigit()])
logger.log(f"{record.id}: {tx.amount} < {min_amount}") if pay_denom != "alnt":
logger.log(
f"{record.id}: {pay_denom} in tx {tx.hash} is not an expected payment denomination"
)
return False
pay_amount = int("".join([i for i in tx.amount if i.isdigit()]))
if pay_amount < min_amount:
logger.log(
f"{record.id}: payment amount {tx.amount} is less than minimum {min_amount}"
)
return False return False
return True return True
@ -311,8 +331,8 @@ class LaconicRegistryClient:
"-c", "-c",
self.config_file, self.config_file,
"registry", "registry",
"tx", "tokens",
"get", "gettx",
"--hash", "--hash",
txHash, txHash,
] ]