aboutsummaryrefslogtreecommitdiffstats
path: root/src/web3_wrapper.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/web3_wrapper.ts')
-rw-r--r--src/web3_wrapper.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/web3_wrapper.ts b/src/web3_wrapper.ts
index e1bb29f85..05a8dc063 100644
--- a/src/web3_wrapper.ts
+++ b/src/web3_wrapper.ts
@@ -17,12 +17,6 @@ export class Web3Wrapper {
public isAddress(address: string): boolean {
return this.web3.isAddress(address);
}
- public getDefaultAddress(): string {
- return this.web3.eth.defaultAccount;
- }
- public setDefaultAddress(address: string): void {
- this.web3.eth.defaultAccount = address;
- }
public async isSenderAddressAvailableAsync(senderAddress: string): Promise<boolean> {
const addresses = await this.getAvailableAddressesAsync();
return _.includes(addresses, senderAddress);