fix: set polling interval back to 15 seconds

This commit is contained in:
Moody Salem 2021-06-07 17:52:49 -05:00
parent 68518d7ce0
commit 355012eec9
No known key found for this signature in database
GPG Key ID: 8CB5CD10385138DB

@ -10,6 +10,6 @@ export default function getLibrary(provider: any): Web3Provider {
: 'any'
)
// TODO: this should depend on the network block time
library.pollingInterval = 1000
library.pollingInterval = 15_000
return library
}