mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #1306 from MetaMask/redoAutoFaucetAsFetch
Switch auto-faucet from XMLHttpRequest to fetch
This commit is contained in:
commit
953a29b19e
@ -4,9 +4,15 @@ const env = process.env.METAMASK_ENV
|
|||||||
|
|
||||||
module.exports = function (address) {
|
module.exports = function (address) {
|
||||||
if (METAMASK_DEBUG || env === 'test') return // Don't faucet in development or test
|
if (METAMASK_DEBUG || env === 'test') return // Don't faucet in development or test
|
||||||
var http = new XMLHttpRequest()
|
let data = address
|
||||||
var data = address
|
let headers = new Headers()
|
||||||
http.open('POST', uri, true)
|
headers.append('Content-type', 'application/rawdata')
|
||||||
http.setRequestHeader('Content-type', 'application/rawdata')
|
fetch(uri, {
|
||||||
http.send(data)
|
method: 'POST',
|
||||||
|
headers,
|
||||||
|
body: data,
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error(err)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user