Fix typo
This commit is contained in:
parent
376d148034
commit
869381d648
1 changed files with 2 additions and 2 deletions
|
@ -18,10 +18,10 @@ class Address < ApplicationRecord
|
||||||
end
|
end
|
||||||
|
|
||||||
def add_to_wallet
|
def add_to_wallet
|
||||||
AddAddressToWallet.perform_later self unless added_to_wallet?
|
AddAddressToWalletJob.perform_later self unless added_to_wallet?
|
||||||
end
|
end
|
||||||
|
|
||||||
def update_op_return
|
def update_op_return
|
||||||
UpdateAddressOpReturn.perform_later self if update_op_return?
|
UpdateAddressOpReturnJob.perform_later self if update_op_return?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Reference in a new issue