Skip to content

Commit ac1aec1

Browse files
committed
fix
1 parent a075d21 commit ac1aec1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dist/esm/index.evm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2065,7 +2065,7 @@ class WorldApp {
20652065

20662066
Promise.all([
20672067
this.pollTransactionIdFromWorldcoin(payload),
2068-
]).then((transactionHashFromWorld)=>{
2068+
]).then((transactionHashFromWorldcoin)=>{
20692069
console.log('transactionHashFromWorldcoin', transactionHashFromWorldcoin);
20702070
let transactionHash = transactionHashFromWorldcoin;
20712071
console.log('transactionHash', transactionHash);

dist/esm/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/umd/index.evm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2069,7 +2069,7 @@
20692069

20702070
Promise.all([
20712071
this.pollTransactionIdFromWorldcoin(payload),
2072-
]).then((transactionHashFromWorld)=>{
2072+
]).then((transactionHashFromWorldcoin)=>{
20732073
console.log('transactionHashFromWorldcoin', transactionHashFromWorldcoin);
20742074
let transactionHash = transactionHashFromWorldcoin;
20752075
console.log('transactionHash', transactionHash);

dist/umd/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/wallets/WorldApp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export default class WorldApp {
113113

114114
Promise.all([
115115
this.pollTransactionIdFromWorldcoin(payload),
116-
]).then((transactionHashFromWorld)=>{
116+
]).then((transactionHashFromWorldcoin)=>{
117117
console.log('transactionHashFromWorldcoin', transactionHashFromWorldcoin)
118118
let transactionHash = transactionHashFromWorldcoin
119119
console.log('transactionHash', transactionHash)

0 commit comments

Comments
 (0)