File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ services:
5
5
context : ../
6
6
dockerfile : ./Dockerfile
7
7
environment :
8
- VERSION : v2.1.4
8
+ VERSION : v2.1.5
Original file line number Diff line number Diff line change @@ -151,10 +151,10 @@ class BridgeUtils {
151
151
jsonInterface : nodeConfig . contract . _jsonInterface
152
152
} ) ( log ) ;
153
153
if ( receipt . event !== functionSig ) continue ;
154
- if ( receipt . transactionHash != txhash ||
155
- receipt . returnValues . amount !== data . uints [ 0 ] ||
156
- receipt . returnValues . decimal !== ( data . uints [ 1 ] ) . toString ( ) ||
157
- receipt . returnValues . token !== data . token
154
+ if ( receipt . transactionHash . toLowerCase ( ) != txhash ||
155
+ receipt . returnValues . amount . toLowerCase ( ) !== data . uints [ 0 ] ||
156
+ receipt . returnValues . decimal . toLowerCase ( ) !== ( data . uints [ 1 ] ) . toString ( ) ||
157
+ receipt . returnValues . token . toLowerCase ( ) !== data . token
158
158
) continue ;
159
159
return true ;
160
160
}
You can’t perform that action at this time.
0 commit comments