diff --git a/src/integration/blockchain/icp/icp-wallet.ts b/src/integration/blockchain/icp/icp-wallet.ts index 81e3e12651..1875612411 100644 --- a/src/integration/blockchain/icp/icp-wallet.ts +++ b/src/integration/blockchain/icp/icp-wallet.ts @@ -41,6 +41,11 @@ export class InternetComputerWallet { } getAgent(host: string): HttpAgent { - return HttpAgent.createSync({ identity: this.identity, host }); + return HttpAgent.createSync({ + identity: this.identity, + host, + verifyQuerySignatures: false, + shouldSyncTime: true, + }); } }