Potential Fix for Electrum v2 and new 111 length Master Keys
-
potential solution for those using v2+ with the new 111 character master keys. Someone please verify
open the file bwwc-bitcoin-gateway.php
find line
else if (!preg_match ('/^[a-f0-9]{128}$/', $this->electrum_master_public_key))
replace with
else if (!preg_match ('/^[0-9a-zA-Z]{111}$/', $this->electrum_master_public_key))
open file bcmath_Utils.php
find
define('MAX_BASE', 128);
replace with
define('MAX_BASE', 111);
https://www.ads-software.com/plugins/bitcoin-payments-for-woocommerce/
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Potential Fix for Electrum v2 and new 111 length Master Keys’ is closed to new replies.