Skip to content

Commit cd6a2f7

Browse files
committed
update default currency
1 parent bbe4346 commit cd6a2f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/remix-ide/src/blockchain/execution-context.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class ExecutionContext {
8080
}
8181
const cb = async (err, id) => {
8282
let name = 'Custom'
83-
let networkNativeCurrency = null
83+
let networkNativeCurrency = { name: "Ether", symbol: "ETH", decimals: 18 }
8484
if (err) name = 'Unknown'
8585
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-155.md
8686
else if (id === 1) name = 'Main'

0 commit comments

Comments
 (0)