Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'develop' into 435_computable_gas_price
  • Loading branch information
ivandzen authored Jan 28, 2022
commit f3cef53269a807da75b5545e8147000cf6f2cf59
1 change: 1 addition & 0 deletions proxy/environment.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from decimal import Decimal
import json
import os
import subprocess
from logged_groups import logged_group, LogMng
Expand Down
4 changes: 1 addition & 3 deletions proxy/plugin/solana_rest_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from ..common_neon.errors import EthereumError
from ..common_neon.eth_proto import Trx as EthTrx
from ..core.acceptor.pool import proxy_id_glob
from ..environment import neon_cli, solana_cli, SOLANA_URL, PP_SOLANA_URL, ACCOUNT_PERMISSION_UPDATE_INT
from ..environment import neon_cli, get_solana_accounts, SOLANA_URL, PP_SOLANA_URL, ACCOUNT_PERMISSION_UPDATE_INT
from ..indexer.indexer_db import IndexerDB, PendingTxError
from .gas_price_calculator import GasPriceCalculator
from ..common_neon.account_whitelist import AccountWhitelist
Expand All @@ -59,8 +59,6 @@ def __init__(self):
self.db = IndexerDB()
self.db.set_client(self.client)

self.account_whitelist = AccountWhitelist(self.client, self.signer, ACCOUNT_PERMISSION_UPDATE_INT)

if PP_SOLANA_URL == SOLANA_URL:
self.gas_price_calculator = GasPriceCalculator(self.client)
else:
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.