From d72798bdb9f1e4749cb932b54f28ce4e028044cd Mon Sep 17 00:00:00 2001 From: Vladislav Lapin Date: Thu, 20 Aug 2026 14:17:26 +0300 Subject: [PATCH] fix: bind KYC uploads to the configured chain Signed-off-by: Vladislav Lapin --- app/components/candidates/Apply.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/components/candidates/Apply.vue b/app/components/candidates/Apply.vue index 58c4bfb..9044be4 100644 --- a/app/components/candidates/Apply.vue +++ b/app/components/candidates/Apply.vue @@ -709,7 +709,8 @@ export default { const txParams = { from: account, gasPrice: self.web3.utils.toHex(self.gasPrice), - gas: self.web3.utils.toHex(gas) + gas: self.web3.utils.toHex(gas), + chainId: self.chainConfig.networkId } await new Promise((resolve, reject) => { let settled = false