mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 22:56:40 +00:00
b37fda7731
* Rebase on 1.8.5 * Remove outdated patches and apply all others * Use shh_post that returns hash * Use bloom filter for request to mailserver * Remove tests for sending messages without subbing first * Fix deadlock in ethdb * Expect null if receipt is not yet created * Subscribe to messages before sending them in whisper test
24 lines
749 B
HTML
24 lines
749 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" style="height: 100%">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Go Ethereum Dashboard</title>
|
|
<link rel="shortcut icon" type="image/ico" href="https://ethereum.org/favicon.ico" />
|
|
<style>
|
|
::-webkit-scrollbar {
|
|
width: 16px;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #212121;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="height: 100%; margin: 0">
|
|
<div id="dashboard" style="height: 100%"></div>
|
|
<script src="bundle.js"></script>
|
|
</body>
|
|
</html>
|